Linux 技巧:让进程在后台运行更可靠的几种方法
https://www.ibm.com/developerworks/cn/linux/l-cn-nohup/index.html
常用:
nohup command_to_run >fine_name 2>&1 &
注: filename 是储存程序输出内容的文件名
这样程序在后台运行,如果想要关闭,可以查询对应进程编号,然后kill进程:
ps -ef|grep command # 查看PID
kill -9 [PID] # 结束PID对应的进程