Skip to content

Instantly share code, notes, and snippets.

@wadmiraal
Last active August 29, 2015 14:13
Show Gist options
  • Save wadmiraal/e77a1e98915783250cce to your computer and use it in GitHub Desktop.
Save wadmiraal/e77a1e98915783250cce to your computer and use it in GitHub Desktop.
List top programs by number of processes
ps aux | awk '{ print $11 }' | sort | uniq -c | sort -r
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment