nohup ./bin/test > nohub.out 2>&1 &

意思是将test这个程序的输入重定向到nohub.out中,最后的&表示后台运行

如果要停止,需要找到该进程再杀掉

$ pa aux|grep test

root     123 0.0  0.1 1079748 8336 pts/0    Sl   09:58   0:00 ./bin/test
root     456  0.0  0.0   6300   736 pts/0    S+   09:58   0:00 grep --color=auto test

$ kill 123