标签: python shell process
我使用命令在我的vps控制台中运行后台进程。
nohup python /home/test.py &
当程序结束时,在我的putty控制台中输入ps aux,屏幕上会显示消息。
ps aux
root 3513 0.1 2.9 24296 15004 ? S 11:51 0:00 python /home/test
如何在没有kill 3513的情况下终止该过程?
kill 3513