Skip to content

Instantly share code, notes, and snippets.

@ericnicolaas
Last active August 29, 2015 14:04
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 ericnicolaas/ff429aed51cb7a4eed31 to your computer and use it in GitHub Desktop.
Save ericnicolaas/ff429aed51cb7a4eed31 to your computer and use it in GitHub Desktop.
Print average size of Apache process (Centos 6)
ps aux | grep httpd | grep -v pts | awk '{ tot += $6; procs += 1; print $2,$6,$11 } END { print "TOTAL: ",tot,"/",procs,"=",tot/procs }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment