Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Posting-Version: version B 2.10.1 Fluke 1/4/84; site fluke.UUCP Path: utzoo!watmath!clyde!burl!ulysses!harpo!decvax!ittvax!dcdwest!sdcsvax!sdcrdcf!hplabs!tektronix!uw-beaver!ssc-vax!fluke!inc From: inc@fluke.UUCP Newsgroups: net.unix Subject: Neophytes Message-ID: <261@tpvax.fluke.UUCP> Date: Sat, 5-May-84 13:16:28 EDT Article-I.D.: tpvax.261 Posted: Sat May 5 13:16:28 1984 Date-Received: Fri, 18-May-84 00:06:04 EDT Organization: John Fluke Mfg. Co., Everett, WA Lines: 27 As a neophyte, I don't know where the appropriate place to post this is, so I'm putting it here, hoping that since this group is for 'neophytes', the flames I will inevitabley get are mild ones. I have recently written a shell script that (hopefully) will allow me to select which signature to put on my postings. If there is a shell script below, it didn't work. If you see a '.signature', then it did. NOTE NOTE NOTE THERE IS NO NEED TO RESPOND TO THIS POSTING, AS I WILL SEE THE RESULT WHEN I READ THIS NEWSGROUP MYSELF. THANK YOU IN ADVANCE FOR PAYING ATTENTION. Yours Truly, -- #! /bin/csh -f # V0.0 by inc : interactive .signature file that asks for which message # to be appended to the message or mail posting echo -n "Which signature? Select [1;7m 1[0m -or- [1;7m 2 [0m --> " ; set si = $< if $si == '1' cat signature1 else cat signature2 endif