ps -efL | grep python | wc -l
此命令的意思是查看 Python的进程数目
ps -ef|grep python|grep -v grep|cut -c 9-15|xargs kill -9
此命令是删除python进程