home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / Linux / Divers / remind-03.00.19.tgz / remind-03.00.19.tar / remind-03.00.19 / scripts / kall next >
Text File  |  1998-01-14  |  926b  |  43 lines

  1. #!/bin/sh
  2. #
  3. # $Id: kall,v 1.1 1998/01/15 02:50:20 dfs Exp $
  4. #
  5. # kall - kill all processes belonging to this user that match
  6. #           specified string.
  7.  
  8. signal=`echo $1 | grep '^\-.*'`
  9. me=`basename $0`
  10.  
  11. if [ "$signal" != "" ]; then
  12.     shift
  13. else
  14.     signal="-TERM"
  15. fi
  16.  
  17. if [ "$1" = "" ]; then
  18.     echo "usage: $me [-signal] string [string...]"
  19.     echo "       kills all of your processes where command name matches"
  20.     echo "       any of the given strings."
  21.     exit
  22. fi
  23.  
  24. msg="0"
  25.  
  26. while [ "$1" != "" ]; do
  27.  
  28. # NOTE:  You may have to modify the next line, since PS is non-portable.
  29. # The 'awk' command picks out the process IDs to pass them on to kill.
  30.     rprocs=`ps cx | awk '{if(prog == $NF && $1 != mypid) print $1}' prog=$1 mypid=$$ -`
  31.     if [ "$rprocs" != "" ]; then
  32.         msg="1"
  33.         echo -n "${me}: Sending $signal signal to $1 process(es)"
  34.         echo '...'
  35.         kill $signal $rprocs
  36.     fi
  37.     shift
  38. done
  39.  
  40. if [ $msg = "1" ]; then
  41.     echo "${me}: Done."
  42. fi
  43.