Skip to content

Instantly share code, notes, and snippets.

@alekstrust
Forked from sayem314/mem.sh
Created October 3, 2016 16:34
Show Gist options
  • Save alekstrust/b941850228617ca50633ffb861ce9b5f to your computer and use it in GitHub Desktop.
Save alekstrust/b941850228617ca50633ffb861ce9b5f to your computer and use it in GitHub Desktop.
processs memory check on linux
#!/bin/bash
ps -C $1 -O rss | awk '{ count ++; sum += $2 }; END {count --; print "Number of processes =",count; print "Memory usage per process =",sum/1024/count, "MB"; print "Total memory usage =", sum/1024, "MB" ;};'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment