https://www.runoob.com/linux/linux-comm-nohup.html
nohup command
或者
nohup command &
带&的命令行 在当前目录下生成一个nohup.out的输出文件
#并重定向输入到 logs.log 文件
nohup /root/runoob.sh > logs.log 2>&1 &
nohup command >/dev/null 2>&1
不生成文件
ps -aux | grep "run.sh"
kill -9 进程号PID