ipcclean.sh
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:0k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. #!/bin/sh
  2. #
  3. # $Header: /usr/local/cvsroot/pgsql/src/bin/ipcclean/ipcclean.sh,v 1.2 1998/08/22 05:19:31 momjian Exp $
  4. #
  5. PATH=PG_OPT_IPCCLEANPATH_PARAM:$PATH
  6. export PATH
  7. ipcs | egrep '^m .*|^s .*' | egrep "`whoami`|postgres" | 
  8. awk '{printf "ipcrm -%s %sn", $1, $2}' '-' | sh