From 92a0786f5abcadf39be980cb1432f455683ee6e8 Mon Sep 17 00:00:00 2001 From: iProbe Date: Tue, 17 Oct 2023 11:25:32 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=20'linux=E5=9F=BA=E7=A1=80/?= =?UTF-8?q?=E5=89=8D=E5=8F=B0=E7=A8=8B=E5=BA=8F=E8=B0=83=E5=88=B0=E5=90=8E?= =?UTF-8?q?=E5=8F=B0=E8=BF=90=E8=A1=8C.md'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- linux基础/前台程序调到后台运行.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 linux基础/前台程序调到后台运行.md diff --git a/linux基础/前台程序调到后台运行.md b/linux基础/前台程序调到后台运行.md new file mode 100644 index 0000000..e28bc5f --- /dev/null +++ b/linux基础/前台程序调到后台运行.md @@ -0,0 +1,10 @@ +```shell +# 暂停运行 +Ctrl+z +# 查看job +jobs -l +# 相应程序调度后台 +bg %[jobs编号] +# 设置退出shell不终端运行 +disown +``` \ No newline at end of file