#!/bin/sh for i in `pgrep apache2`; do cat /proc/$i/status|grep VmHWM; #cat /proc/$i/status|egrep '(^Pid:|VmHWM)'; done