I am trying to teach myself shell programming using the "Unix Programming Environment" book. I was trying to write a script to remove all the semaphores from the system. However I couldn't find a way that wouldn't use a temporary file. Here's the code that works but uses a temporary file. I'm sure there is a much easier solution. Please help.
# remsem: Remove all the semaphores
IFS='
'
set X`ipcs`
j=0
for i
do
case $i in
*semid*) j=1;;
*'Message Queues'*) break;;
esac
if [ $j = 1 ]
then
echo $i
fi
done |
awk ' $1 != "key" { print $1 } ' > /tmp/remsem.$$
set `cat /tmp/remsem.$$`
for i
do
`ipcrm -S $i`
done
rm /tmp/remsem.$$