1. 一般情况
$ command &
$ jobs
  1. 命令已经执行了
$ command

Ctrl + Z (进程转后台并stopped)
回显:
[1]+ Stopped command args...
这里方括号里的 “1” 指进程的作业编号是1,在bg命令中可以用%1来引用。

$ bg (stopped的作业进程转后台运行,且默认使第1个作业转后台运行)
回显:
[1]+ command args... &
表示作业1转后台运行。

$ bg %2 (使stopped的且作业编号为2的进程转后台运行)

$ fg (将作业1转前台运行)
$ fg %2 (将作业2转前台运行)

$ jobs
  1. 程序后台运行的推荐做法
$ nohup command &
上述命令执行后出现:
nohup: ignoring input and appending output to 'nohup.out'
可以重定向到一个文本文件
$ jobs