Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Posting-Version: version B 2.10 5/3/83; site reed.UUCP Path: utzoo!linus!decvax!ucbvax!ucbcad!tektronix!ogcvax!metheus!teneron!reed!mikec From: mikec@reed.UUCP Newsgroups: net.wanted,net.sources Subject: Re: Wanted: A copy of shar Message-ID: <564@reed.UUCP> Date: Sun, 1-Jul-84 13:22:40 EDT Article-I.D.: reed.564 Posted: Sun Jul 1 13:22:40 1984 Date-Received: Wed, 4-Jul-84 00:27:13 EDT References: <558@reed.UUCP> Organization: Portland, Oregon Lines: 32 When I posted the original article asking for someone's copy of shar, I had no idea how many people wanted a copy. Well, just in the past two days I have gotten several versions as well as quite a few requests for copies. Rather than send each individual a copy. I will post one shar program that I recieved. Unfortunetly, I hacked up the original letter he sent and thus, I don't know the original author! This appears to be the most simplestic of the shar's I recieved and that is why I am posting it. You can make your own little changes as you like. Michael Cooper P.S. -- Would the original author please identify himself! __________________ UUCP: {decvax, ucbvax, pur-ee, uw-beaver, ogcvax}!tektronix!reed!mikec ...!teneron!reed!mikec -------------------------------Tear'em Hear-------------------------------- : Create a shell that can be run to extract a bunch of files. echo ": This is a shar archieve. Extract with sh, not csh." echo ": The rest of this file will extract:" echo ":" "$*" for file do echo "echo extracting - $file" echo "sed 's/^X//' > $file << '~FUNKY STUFF~'" /bin/cat $file | sed 's/^/X/' echo "~FUNKY STUFF~" done