后台运行 软件退出后继续运行怎么设置( 二 )


(3)bg命令将一个在后台暂停的命令 , 变成在后台继续执行如果后台中有多个命令,可以先用jobs查看jobnum,然后用 bg %jobnum 将选中的命令调出继续执行 。zsh需要在数字前面加%,bash则直接用数字.
[root@localhost test]# jobs[1]- 运行中nohup ./program $1 $2 $3 &(工作目录:/home/test)[2]+ 运行中nohup ./BaiduyunPCS $1 $2 $3 &// 使用fg 后,将任务2调至前台运行.//fg %2[root@localhost test]# fg 2nohup ./BaiduyunPCS $1 $2 $3^Z// 使用ctrl+Z后 , 将任务2放置到后台,并暂停[2]+ 已停止nohup ./BaiduyunPCS $1 $2 $3// 使用bg 后 , 激活任务2的运行//bg %2[root@localhost test]# bg 2[2]+ nohup ./BaiduyunPCS $1 $2 $3 &

推荐阅读