* get rid of the "deprecated conversion from string constant to ‘char*’" warnings
author |
thib |
date |
Wed, 15 Apr 2009 20:26:32 +0000 |
parents |
223b71206888 |
children |
|
rev |
line source |
0
|
1 #!/bin/sh
|
|
2 # IPC ¤Îmessage queue¡¿shared memory ¤¬»Ä¤Ã¤Æ¤·¤Þ¤Ã¤Æ¤¤¤ë
|
|
3 # »þ¤Ë¡¢¤½¤ì¤òÁ´Éô¾Ãµî¤¹¤ë¤¿¤á¤Î¥¹¥¯¥ê¥×¥È
|
|
4
|
|
5 killall -KILL test xlovesys xclannad
|
|
6 ipcs | grep '^q' | awk '{print $2;}' | perl -ne 'chomp; system "ipcrm -q $_";'
|
|
7 ipcs | grep '^m' | awk '{print $2;}' | perl -ne 'chomp; system "ipcrm -m $_";'
|
|
8 ipcs | grep '^s' | awk '{print $2;}' | perl -ne 'chomp; system "ipcrm -s $_";'
|