home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
- #########################################################
- # MultiTalk 1.1 - Albert Viall
- #
- # This shell script just sets the read/write permissions
- # of your TTY for the Parlour and then executes the game
- # for you. This script is placed here for convenience.
- # Mtalk will NOT be executed while on Calvin.
- # If ever there is an execution error for Mtalk, the most
- # likely culprit is that the executable was not setuid.
- # In such a case, let me know immediately.
- if [ `uuname -l` != "hobbes" ]
- then
- echo
- echo "You can run Mtalk ONLY on Hobbes..."
- echo
- exit 1
- fi
-
- nice -5 /u1/prg/al/C/TALK/multitalk
-
-