Skip to content

Instantly share code, notes, and snippets.

@Sanix-Darker
Last active September 5, 2019 19:41
Show Gist options
  • Save Sanix-Darker/3260bc4ef719ee37dfc9340720a8bdb7 to your computer and use it in GitHub Desktop.
Save Sanix-Darker/3260bc4ef719ee37dfc9340720a8bdb7 to your computer and use it in GitHub Desktop.
[SHELL]Find process by Name and kill it
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