#!/bin/sh
#
# /usr/local/devel/postgres-v4r2/src/bin/ipcclean/hpux/RCS/ipcclean.sh,v 1.2 1993/07/10 04:31:17 aoki Exp
#
PATH=_fUnKy_IPCCLEANPATH_sTuFf_:$PATH
export PATH
ipcs | egrep '^m .*|^s .*' | egrep "`whoami`|postgres|picasso" | \
awk '{printf "ipcrm -%s %s\n", $1, $2}' '-' | sh
