Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Posting-Version: nyu notesfiles V1.1 4/1/84; site down.FUN Path: utzoo!watmath!clyde!burl!ulysses!princeton!down!honey From: honey@down.FUN Newsgroups: net.unix Subject: Re: HELP!! Need online Help system for U Message-ID: <2700001@down.FUN> Date: Tue, 23-Oct-84 11:11:00 EDT Article-I.D.: down.2700001 Posted: Tue Oct 23 11:11:00 1984 Date-Received: Wed, 24-Oct-84 03:43:36 EDT References: <654@noscvax.UUCP> Organization: The Official Fun Machine of Princeton University EECS Lines: 34 Nf-ID: #R:noscvax:-65400:down:2700001:000:490 Nf-From: down!honey Oct 23 11:11:00 1984 here's the help command that we use on down. hope this helps! north/honey #! /bin/csh -f @ n = $$ % 10 switch($n) case 1: echo "Go away." breaksw case 2: echo "I'm busy." breaksw case 3: echo "Leave me alone." breaksw case 4: echo "Buzz off." breaksw case 5: echo "Read the manual." breaksw case 6: echo "Illegal instruction -- core dumped." breaksw case 7: echo "Ask Rob." breaksw case 8: echo "It's Greg's fault." breaksw default: echo "Read the code." breaksw endsw