Mercurial > otakunoraifu
view clear_ipc @ 49:6581f7eccd26
* Correct --disable-x11
* Better use of --enable and --with. --enable is for optional features whereas --with is for the use of optional libraries
| author | thib |
|---|---|
| date | Fri, 17 Apr 2009 08:12:18 +0000 |
| 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 $_";'
