Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在删除服务器上的一个文件夹。该文件夹的大小约为 100GB。我正在使用rm -rf cache 无论如何,即使我关闭控制台或断开网络连接,命令也会继续运行直到完成?
rm -rf cache
我的服务器在 CENTOS v6 上
提前感谢
nohup rm -rf 缓存 > /dev/null 2>&1
要在后台运行它们,您可以在命令中使用“&”符号如下,
nohup rm -rf cache &
您也可以在运行时读取命令的状态/输出
tail -10 nohup.out
这将为您提供运行时输出(如输出控制台)。
希望这可以帮助。