-
-
Save oboje/c1c7657717a416e0f4e13147f2347807 to your computer and use it in GitHub Desktop.
Unix system managements utils
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
#will show you your processes, with their parent ID in the second column. | |
ps -xo pid,ppid,stat,command | |
#kills processes | |
ps aux | grep -ie "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