首先使用ctrl+z将运行的程序挂起
^z
[1]+ stopped sh test.sh
查看挂起的脚本
jobs -l
[1]+ 220345 stopped sh test.sh
将脚本放到后台继续运行
bg -1 #1是运行的程序编号
[1]+ sh test.sh
查看放到后台的正在运行的任务
jobs -l
[1]+ 220345 Running sh test.sh
首先使用ctrl+z将运行的程序挂起
^z
[1]+ stopped sh test.sh
查看挂起的脚本
jobs -l
[1]+ 220345 stopped sh test.sh
将脚本放到后台继续运行
bg -1 #1是运行的程序编号
[1]+ sh test.sh
查看放到后台的正在运行的任务
jobs -l
[1]+ 220345 Running sh test.sh