home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 February / PCWorld_2000-02_cd.bin / live / etc / init.d / sendsigs < prev    next >
Text File  |  1998-06-21  |  349b  |  19 lines

  1. #! /bin/sh
  2. #
  3. # sendsigs    Kill all remaining processes.
  4. #
  5. # Version:      @(#)sendsigs  2.75  22-Jun-1998  miquels@cistron.nl
  6. #
  7.  
  8. PATH=/sbin:/bin:/usr/sbin:/usr/bin
  9.  
  10. # Kill all processes.
  11. echo -n "Sending all processes the TERM signal... "
  12. killall5 -15
  13. echo "done."
  14. sleep 5
  15. echo -n "Sending all processes the KILL signal... "
  16. killall5 -9
  17. echo "done."
  18.  
  19.