Skip to content

Instantly share code, notes, and snippets.

@alimbada
Last active October 15, 2021 11:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alimbada/e01c79f37ac90a4fb6f1778160277b05 to your computer and use it in GitHub Desktop.
Save alimbada/e01c79f37ac90a4fb6f1778160277b05 to your computer and use it in GitHub Desktop.
# get processes by memory usage on busybox
ps | tail -n +2 | awk 'BEGIN {OFS="\t"}; { s = ""; for (i = 5; i <= NF; i++) s = s $i " "; print $3, s }' | sort -rnk 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment