Skip to content

Instantly share code, notes, and snippets.

@freyes
Last active February 14, 2017 14:57
Show Gist options
  • Select an option

  • Save freyes/13c228ae14524bc8dcfc2cfde7c7bf4f to your computer and use it in GitHub Desktop.

Select an option

Save freyes/13c228ae14524bc8dcfc2cfde7c7bf4f to your computer and use it in GitHub Desktop.
print memory in megabytes
#!/bin/bash
# source: http://php.ingewikkeld.net/entry/human-readable-memory-usage-in-linux-per-process
ps -heo 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 "" }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment