nohup

后台运行:

nohup command &

nohup输出:

nohup command  > myout.file 2>&1 &

查看:

jobs

查看任务:

ps -aux|grep bismark

a:显示所有程序

u:以用户为主的格式来显示

x:显示所有程序,不以终端机来区分

用grep -v参数可以将grep命令排除掉

ps -aux|grep chat.js| grep -v grep

nohup_第1张图片
nohup_第2张图片
stat的说明
nohup_第3张图片
中文

再用awk提取一下进程ID

ps -aux|grep chat.js| grep -v grep | awk '{print $2}'

终止后台运行的进程kill

kill -9  进程号 # 彻底删除

kill -STOP 1234 # 暂停进程

kill -CONT 1234 # 重启进程

ref:nohup和&后台运行,进程查看及终止 - 弥尘 - 博客园

你可能感兴趣的:(nohup)