Linux中如何让进程(或正在运行的程序)到后台运行 1、在运行命令后加&即可。eg: #sh test.sh &[1] 9073查看:# jobs -l [1]+ 9073 Running sh test.sh & 2、把正在运行的程序放到后台方法:a、#sh test.sh b、#ctrl + z (ctrl+z暂停已经运行的进程)[1]+ Stopped sh test.sh c、bg命 linux 2024-08-11 29 点赞 0 评论 43 浏览