服务器运行python
python xx.py
后台运行python
& 符号 代表 后台运行,如果用户登出后,脚本也就自动退出了
python xx.py &
nohup 保证了用户登出之后,脚本还会继续后台运行
nohup python xxx.py &
nohup python xx.py > /PATH/run.log 2>&1 &
0 – stdin (standard input),1 – stdout (standard output),2 – stderr (standard error)
2>&1是将标准错误(2)重定向到标准输出(&1),标准输出(&1)再被重定向输入到run.log文件中。
I'm so cute. Please give me money.
- 本文链接:https://wentianhao.github.io/2020/10/09/%E6%9C%8D%E5%8A%A1%E5%99%A8%E5%90%8E%E5%8F%B0%E8%BF%90%E8%A1%8Cpython%E8%84%9A%E6%9C%AC/
- 版权声明:本博客所有文章除特别声明外,均默认采用 许可协议。
若没有本文 Issue,您可以使用 Comment 模版新建。