守护进程 | 后台程序 使用 xshell 连接到服务器,通过终端启动后台程序,有一个问题: xshell 一旦断开,从终端启动的后台程序也退出了。 解决方法如下: #!/bin/sh nohup ./your_proc >/dev/null 2>&1 &