-
-
Save eduardo-matos/40efb3e4ce4d4e3f7ba7 to your computer and use it in GitHub Desktop.
Bash notepad
This file contains 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
# kill processes by name | |
pkill <process name> | |
# if the above doesn't work, drop an atomic bomb! | |
ps auxww | grep '<process name>' | awk '{print $2}' | xargs kill -9 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment