Moved all opcodes from scn2k_text.cc to scn2k_textimpl.cc
author |
Thibaut GIRKA <thib@sitedethib.com> |
date |
Fri, 18 Dec 2009 14:25:56 +0100 |
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 $_";'
|