You are not logged in.
I'm curious if it is possible to bring a rogue process to the foreground.
For example:
$ wget google.com &
$ exit
And thus the program is still running but I have no idea as to how far along it is. Any thoughts, or shall I get into the habit of using screen more often?
Last edited by omegainstigator (2008-01-24 18:43:49)
Offline
dtach might help. It's in AUR.
Offline
fg ?
Offline
fg only accepts job numbers, and if the terminal is exited while the job is running fg is no longer useful.
I believe that dtach has a good chance of being what I'm looking for. Now I just have to figure out how deal with sockets.
Very thanks.
Offline
I once used it all wrong by omitting /tmp in the socket name.
Use it like this dtach -n /tmp/rt rtorrent and at any time dtach -a /tmp/rt.
And Ctrl+\ to "detach" it again.
I consider it quite important for such a persistent app like rtorrent, you never know when you have to close down X.
Offline