Skip to content

Instantly share code, notes, and snippets.

@iamajeesh
Created November 3, 2013 18:55
Show Gist options
  • Save iamajeesh/7293525 to your computer and use it in GitHub Desktop.
Save iamajeesh/7293525 to your computer and use it in GitHub Desktop.
Top 10 Memory and cpu Consuming process
#Memory
ps -auxf | sort -nr -k 4 | head -10
#CPU
ps -auxf | sort -nr -k 3 | head -10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment