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