Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我们知道 python 文件名时,如何在 shell 脚本中杀死正在运行的 python xxx.py?(它由 cmd 执行python xxx.py)
xxx.py
python xxx.py
我可以ps aux | grep python用来获取它的pid。然后 kill pid终止它。
ps aux | grep python
kill pid
但每次,我都必须执行两个 cmd。有什么好的方法吗?
该pkill实用程序可以在发送信号时查看命令行:
pkill
pkill -f xxx.py