①后台执行,但是打印log在nohup.log在你当前目录下,随着执行这个文件越来越大,直到执行完
nohup 你要执行的命令 &
例如:
nohup bash -x test.sh &
②后台执行,不打印log
nohup 你要执行的命令 >/dev/null 2>log &
例如:
nohup bash -x test.sh >/dev/null 2>log &
【查看进程是否在执行2种方法】
①jobs -l
②ps -ef|grep 进程名称 例如java进程就查看:ps -ef|grep java