1. 程式人生 > >Linux中進程在前後臺的切換

Linux中進程在前後臺的切換

temp emp etc linux one stop tar 命令執行 切換

把進程放入後臺執行
  tar -zcf etc.tar.gz /etc &
把進程放入後臺暫停
  在命令執行的過程中,按下ctrl+z

查看後臺的命令
  jobs
[[email protected] temp]# jobs
[1]+ Stopped top
[2]- Done tar -zcf etc.tar.gz /etc


將後臺暫停的工作回復到前臺執行
  fg 工作號

將後臺暫停的工作回復到後臺執行
  bg 工作號

Linux中進程在前後臺的切換