Skip to content

Instantly share code, notes, and snippets.

@davidangel
Last active February 21, 2017 12:46
Show Gist options
  • Select an option

  • Save davidangel/cde19265f1adf248d3b273ff0ac424af to your computer and use it in GitHub Desktop.

Select an option

Save davidangel/cde19265f1adf248d3b273ff0ac424af to your computer and use it in GitHub Desktop.
Useful Linux Commands

Useful Linux Commands

Memory

To see what processes are running on your machine, sorted by their memory usage, run the following command:

ps aux | awk '{print $2, $4, $11}' | sort -k2rn | head -n 15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment