Last active
September 5, 2019 19:41
-
-
Save Sanix-Darker/3260bc4ef719ee37dfc9340720a8bdb7 to your computer and use it in GitHub Desktop.
[SHELL]Find process by Name and kill it
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ps -ef | grep python | |
kill -9 PID | |
pkill -9 python | |
pkill -9 -f path/to/my_script.py |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment