Skip to content

Instantly share code, notes, and snippets.

@dseg
Created September 4, 2015 08:35
Show Gist options
  • Save dseg/528b65de2afbafe58ab9 to your computer and use it in GitHub Desktop.
Save dseg/528b65de2afbafe58ab9 to your computer and use it in GitHub Desktop.
Get apache memory usage
#!/bin/sh
HTTPD=apache
ps aux | grep "$HTTPD" | awk '{mem+=$6} END{ print "Average: " (mem/NR) "MB" }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment