home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume10 / multitalk.p1 / mtalk < prev   
Encoding:
Text File  |  1990-02-16  |  645 b   |  22 lines

  1. #!/bin/sh 
  2. #########################################################
  3. #  MultiTalk 1.1  -  Albert Viall
  4. #
  5. #  This shell script just sets the read/write permissions
  6. #  of your TTY for the Parlour and then executes the game
  7. #  for you. This script is placed here for convenience.
  8. #  Mtalk will NOT be executed while on Calvin. 
  9. #  If ever there is an execution error for Mtalk, the most
  10. #  likely culprit is that the executable was not setuid.
  11. #  In such a case, let me know immediately.
  12. if [ `uuname -l` != "hobbes" ]
  13. then 
  14.      echo 
  15.      echo "You can run Mtalk ONLY on Hobbes..."
  16.      echo 
  17.      exit 1
  18. fi
  19.  
  20. nice -5 /u1/prg/al/C/TALK/multitalk
  21.  
  22.