Mercurial > otakunoraifu
view clear_ipc @ 67:419761c8d9b9
Add configure option to build scn2kdump.
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Wed, 23 Feb 2011 01:48:51 +0100 |
parents | 223b71206888 |
children |
line wrap: on
line source
#!/bin/sh # IPC のmessage queue/shared memory が残ってしまっている # 時に、それを全部消去するためのスクリプト killall -KILL test xlovesys xclannad ipcs | grep '^q' | awk '{print $2;}' | perl -ne 'chomp; system "ipcrm -q $_";' ipcs | grep '^m' | awk '{print $2;}' | perl -ne 'chomp; system "ipcrm -m $_";' ipcs | grep '^s' | awk '{print $2;}' | perl -ne 'chomp; system "ipcrm -s $_";'