nohup
命令允许你在后台运行程序,即使你关闭终端窗口也不会停止程序运行
>
重定向操作符将输出重定向到一个文件中:nohup python your_script.py > output.log 2>&1 &
这将把标准输出(stdout)和标准错误(stderr)的输出重定向到名为 output.log
的文件中,并将程序放入后台运行。
tee
命令将输出同时显示在终端和保存到文件中:nohup python your_script.py | tee output.log 2>&1 &
这将把标准输出(stdout)和标准错误(stderr)的输出同时显示在终端和保存到名为 output.log
的文件中,并将程序放入后台运行。
注意:在这两种方法中,your_script.py
是你要运行的 Python 脚本文件名,你需要将其替换为实际的脚本文件名。