ctrl+z --暂停当前进程
jobs--- 查看当前停止的进程
bg --- 将停止进程放在后台运行
fg ---- 将停止进程放在前台运行
ctrl+z 来将目前正在进行当中的工作丢到背景底下
# vi .bashrc
^Z <==在 vi 当中的一般模式中键入[Ctrl]+z
[1]+ Stopped vi .bashrc <==这里会显示将数据丢到背景当中了!其状态为[Stopped]亦即是停止的状态!
[root @test /root ]# fg %number
[root @test /root ]# bg %number
参数说明:
% :后面接数字,表示 jobs 的工作代号
number :就是工作代号
范例:
[root @test /root]# find / -name test
^Z
[1]+ Stopped find / -name testing
[root @test /root]# vi .bashrc
^Z
[2]+ Stopped vi .bashrc <==这里会显示将数据丢到背景当中了!
[root @test /root]# jobs
[1]- Stopped find / -name testing
[2]+ Stopped vi .bashrc
[root @test /root]# bg %1
[root @test /root]# jobs
[1]- Running find / -name testing &
[2]+ Stopped vi .bashrc
[root @test /root]# fg %2
进入 vi 画面啰!