view clear_ipc @ 35:2c574c3d50a9

* Moved XOR key related things to a proper location * xclannad -v now displays the real version (as specified in configure.ac)
author thib
date Sun, 08 Mar 2009 19:16:36 +0000 (2009-03-08)
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 $_";'