Il troppo spesso dimenticato nohup

Per lanciare un comando da shell e farlo girare in background anche se chiudiamo il terminale:
$ nohup ./fooName &
In questo modo è possibile seguire l'output del comando lanciato sul file nohup.out:
$ tail -f nohup.out
Il comando continuerà a girare fintanto che il processo non verrà "killato":
$ ps -ef | grep fooName $ kill -9