#!/bin/csh -f # this uuencoded gz-compressed .tar file created by csh script uufiles # for more information, see e.g. http://xxx.lanl.gov/faq/uufaq.html # if you are on a unix machine this file will unpack itself: # strip off any mail header and call resulting file, e.g., memo.uu # (uudecode ignores these header lines and starts at begin line below) # then say csh memo.uu # or explicitly execute the commands (generally more secure): # uudecode memo.uu ; gunzip memo.tar.gz ; # tar -xvf memo.tar # on some non-unix (e.g. VAX/VMS), first use an editor to change the # filename in "begin" line below to memo.tar_gz , then execute # uudecode memo.uu # gzip -d memo.tar_gz # tar -xvf memo.tar # uudecode $0 chmod 644 memo.tar.gz gunzip -c memo.tar.gz | tar -xvf - rm $0 memo.tar.gz exit