14 lines
222 B
Bash
14 lines
222 B
Bash
#!/bin/bash
|
|
|
|
# This script will cleanup the keys in memory from a
|
|
# kill that was unmasked and thus left stuff in memory
|
|
|
|
ipcrm -M 7890
|
|
ipcrm -M 7891
|
|
ipcrm -M 7892
|
|
ipcrm -M 7893
|
|
|
|
ipcrm -S 7892
|
|
ipcrm -S 7891
|
|
|