2011年12月20日星期二

put your running accessions under nohub (running in background)

(1) put your running accessions under nohub (running in background)
http://stackoverflow.com/questions/625409/how-do-i-put-an-already-running-process-under-nohup

Using the Job Control of bash to send the process into the background:

> [crtl]+z
> bg

And as Sam/Jan mentioned you have to execute disown to avoid killing the process after you close the terminal.

disown -h 

(2) running your accessions under nohub directly

$ nohup yourcommand yourArguement &
$ nohup yourcommand yourArguement > standoutput &
$ nohup yourcommandinfile.sh &

没有评论:

发表评论