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