#!/bin/sh
#
# nuke - kill all coolmuds
#

for i in `ps xc | awk '{ if ($6 == "cm") print $1; }'`
do
    kill $* $i
    echo $i killed
done