view clear_ipc @ 43:01aa5ddf7dc8

A lot of very minor improvements (deleted some unused variables, and other things like that...)
author thib
date Tue, 24 Mar 2009 19:45:48 +0000 (2009-03-24)
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 $_";'