added a script to clean shared memory

This commit is contained in:
Dhanya Maliakal 2016-07-15 18:51:04 +02:00
parent fd1f6d1ec6
commit 157d8cff5e

1
cleansharedmemory.sh Normal file
View File

@ -0,0 +1 @@
for i in seq `ipcs -m | cut -d ' ' -f1`; do ipcrm -M $i; done;