Bring nohup job to foreground

nohup does not disconnect a command from terminal, it makes your script ignore SIGHUP, and redirects stdout/stderr to a file nohup.out, so that the command can continue running in the background after you log out.

nohup does not automatically put the command it runs in the background. One must do that explicitly, by ending the command line with an &.

$ nohup ./script.sh &
[1] 3390
$ nohup: ignoring input and appending output to ‘nohup.out’

jobs can print currently running jobs and their status. If the command jobs cannot find it, then it is no longer a child process of that shell.

$ jobs 
[1]+  Running                 nohup ./script.sh &

One can be bring back a background job to foreground in bash using fg even if it is run with nohup. But that won't change the output redirection, which will still be going to the file nohup.out.

$ fg
nohup ./script.sh

If you close the shell/terminal or log off, your command is no longer a child of that shell. It belongs to init process. If you search in pstree you'll see it is now owned by process 1 (init). That cannot be brought back to the foreground because the foreground no longer exists.


If you wanted to start a script, have it run without the output bothering your terminal and then bring it up later to interact with it, you might want to take a look at a terminal multiplexer. Depending on your system I would recommend tmux or screen. You can find some info on how to use them in the links below:

tmux:

  • A Tmux Primer
  • A Quick and Easy Guide to tmux
  • Tmux Cheat Sheet & Quick Reference

screen:

  • Screen - Community Ubuntu Documentation
  • GNU Screen: an introduction and beginner's tutorial
  • screen keyboard shortcuts

edit: added links for tmux primers


I'll second the use of a terminal multiplexer, but tmux, not screen. Screen is, for all intents and purposes, unmaintained. Its configuration is a dark art, likely first recorded in an appendix of the Necronomicon. Attempting to write your own config is as a glimpse of Cthulu. Seriously. Look around at people's .screenrc files. To be sure, there are ways to mediate screen's abomination of a config flle. Byobu does an admirable job as the veil between mortal users and unholy code. It comes with sensible colours, a menu interface, and perhaps most importantly, a status bar.

But as I said, I recommend tmux instead. It still requires some minor configuration, but it is well documented, and your config file won't look like gibberish. Also, you start out with colours and a status bar. Compare my screenrc and tmux.conf files:

  • screenrc
  • tmux.conf