添加 'linux基础/前台程序调到后台运行.md'

This commit is contained in:
iProbe 2023-10-17 11:25:32 +08:00
parent 590418c92c
commit 92a0786f5a

View file

@ -0,0 +1,10 @@
```shell
# 暂停运行
Ctrl+z
# 查看job
jobs -l
# 相应程序调度后台
bg %[jobs编号]
# 设置退出shell不终端运行
disown
```