Skip to content

Instantly share code, notes, and snippets.

@jwthomp
Created December 7, 2016 18:02
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 jwthomp/696047418e7df5892a61103b5ef73564 to your computer and use it in GitHub Desktop.
Save jwthomp/696047418e7df5892a61103b5ef73564 to your computer and use it in GitHub Desktop.
View memory on OS X from cli
Place in .profile
ViewMemory() {
vm_stat | perl -ne '/page size of (\d+)/ and $size=$1; /Pages\s+([^:]+)[^\d]+(\d+)/ and printf("%-16s % 16.2f Mi\n", "$1:", $2 * $size / 1048576);'
}
alias free=ViewMemory
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment