#!/bin/sh
PIDFILE=/var/run/sendmail.pid
if [ $# -eq 0 ]; then
	ps wwu`cat ${PIDFILE}`
else
	ps wwuax | egrep 'USER|sendmail'
fi
