Ctrl+Z
快捷键的方式,可以将前台工作放入后台,但是会处于暂停状态,那么,有没有办法可以让后台工作继续在后台执行呢?答案是肯定的,这就需要用到 bg 命令。[root@localhost ~]# bg %工作号
和 fg 命令类似,这里的 % 可以省略。
[root@localhost ~]# bg %1 <--- 等同于 bg 1
[root@localhost ~]# bg %2 <--- 等同于 bg 2
#把两个命令恢复到后台执行
[root@localhost @]# jobs
[1]+ Stopped top
[2]- Running tar -zcf etc.tar.gz /etc &
#tar命令的状态变为了Running,但是top命令的状态还是Stopped
本文链接:http://task.lmcjl.com/news/11898.html