# 后台运行,关掉终端会停止运行
command &
# 挂起,暂停任务
Ctrl + Z
# 查看任务列表
jobs
# 调回前台运行
fg
# 调到后台运行
bg
nohup
screen
setsid
https://www.ibm.com/developerworks/cn/linux/l-cn-nohup/index.html
https://wangchujiang.com/linux-command/
原文:https://www.cnblogs.com/mark-zh/p/12427200.html