Skip to content

Instantly share code, notes, and snippets.

@oboje
Last active October 7, 2016 13:41
Show Gist options
  • Save oboje/c1c7657717a416e0f4e13147f2347807 to your computer and use it in GitHub Desktop.
Save oboje/c1c7657717a416e0f4e13147f2347807 to your computer and use it in GitHub Desktop.
Unix system managements utils
#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