nohup

用法:

nohup command &

查看进程:

ps -aux|grep 你守护的文件

过滤掉grep命令:

ps -aux|grep 你守护的文件| grep -v grep

杀掉进程:

kill -9 进程号