Alvin's Blog 这里记录着我的学习之路

Ubuntu SSH 后台执行程序

2017-11-03
Alvin Zhu

通过远程ssh启动程序时,后台运行程序并将标准输出重定向到某个日志文件:

sudo apt install expect
nohup unbuffer python test.py > ./log_test 2>&1 &

相关文章

评论