#!/bin/sh
#
# $Header: /home2/aoki/postgres/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
