home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World Interactive 1996 May / PCW_MAY_1996_LINUX_UKUUG.ISO / sbin / shutdown.sh < prev    next >
Linux/UNIX/POSIX Shell Script  |  1994-08-18  |  230b  |  7 lines

  1. #!/bin/sh
  2. # This is the login shell of account shutdown
  3. case "`tty`" in
  4.     /dev/tty[1-9]|/dev/tty1[0-2]) /sbin/shutdown;;
  5.     *) echo 'Shutting down through the shutdown account only allowed from virtual consoles' >&2; sleep 10;;
  6. esac
  7.