Tagged Questions
0
votes
2answers
79 views
is writing to slow storage in nohup mode blocking the process?
If I have a process writing to nohup and the storage where it writes to is slow, does it block the process which is running in nohup? For example:
process A is running in nohup, it needs to write 10 ...
2
votes
1answer
101 views
In terminal, I can search to end of log faster than the data gets there
[The Question]
Is there some way to have the pipe/tee/write combo write lines immediately? ... if it can be done, what is the trade-off?
[The Backdrop]
My script sends a keypress to the terminal, ...
2
votes
1answer
337 views
Why do backgrounded processes sometimes stop spontaneously?
Sometimes, some time after I've backgrounded a process with bg in bash, when I press Enter in the same shell to redisplay the prompt (just to check that I'm still in bash when some output from the ...
4
votes
3answers
704 views
How to get output from a remote shell
I have an application running on a server, started from the command line. From time to time, I need to connect to the server via SSH and get the output messages written to stdout from the application. ...