python脚本开发常用

一、启动:
1.后台启动不打印:
nohup python test.py > /dev/null 2>&1 &
2.启动打印输出:
python test.py >test.log 2>&1 &
3.echo清空log:
echo ‘’>test.log
二、停止
1.查询正则运行的进程:
ps -ef |grep test.py
2.一键杀死同一命令的进程:
ps -ef |grep test.py |grep -v grep |cut -c 9-15 |xargs kill -9
三、查询
1.查看内存和CPU使用:top
2.查看定时任务:crontab -e
3.监控文件:tail -f test.log

你可能感兴趣的:(python脚本开发常用)