1 查看文件内容:
tail -f test.txt
2 查看端口
netstat nlp
3 删除某个运行程序的所有进程
ps -ef|grep translateService.py|grep -v grep|cut -c 9-15|xargs kill -9
4 nohup后台执行程序
nohup python translateService.py

05-11 14:56