我跑
nohup bash -c "while [ true ]; do echo test; done"
从PuTTy
SSH 客户端,但此进程不再在后台运行,而是nohup
保持在 shell 中的前台进程状态。
软件版本:nohup (GNU coreutils) 8.5
答案1
nohup bash -c "while [ true ]; do echo test; done" &
Nohup 可让您免受挂断信号的困扰。但它不会自动将进程设置为后台进程。
命令末尾的 & 使其在后台运行。