Check Current Python Process
作者:XD / 发表: 2021年12月22日 04:07 / 更新: 2021年12月22日 04:07 / 编程笔记 / 阅读量:2380
You may check the process ID (PID) with this command ps -ef
.
The current Python process can be viewed with this line ps -ef | grep python
.
You may close the process with kill -9 2430(PID)
.