Skip to content

Instantly share code, notes, and snippets.

@liveaverage
Created June 24, 2021 19:02
Show Gist options
  • Save liveaverage/26e7880e8e513a68218c4e50ad3e629f to your computer and use it in GitHub Desktop.
Save liveaverage/26e7880e8e513a68218c4e50ad3e629f to your computer and use it in GitHub Desktop.
Memory Usage
#!/bin/bash
ps -eo size,pid,user,command --sort -size | \
awk '{ hr=$1/1024 ; printf("%13.2f Mb ",hr) } { for ( x=4 ; x<=NF ; x++ ) { printf("%s ",$x) } print "" }' |\
cut -d "" -f2 | cut -d "-" -f1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment