网站首页 > linux 正文

linux后台执行python脚本

admin 2024-01-04 10:15:23 linux 59 ℃
正文


linux后台执行python脚本

nohup python3 test.py > test.log 2>&1 &


nohup python3 test.py > test2.log 2>&1 &


tail test.log -n 101


查看python脚本后台

ps -ef | grep python


kill -9 进程id


###结束指定名称进程

ps -ef|grep test.py|grep -v grep|awk '{print "kill -9 "$2}'|sh


本文TAG:

蓝色枫叶