#!/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., brito.uu # (uudecode ignores these header lines and starts at begin line below) # then say csh brito.uu # or explicitly execute the commands (generally more secure): # uudecode brito.uu ; gunzip brito.tar.gz ; # tar -xvf brito.tar # on some non-unix (e.g. VAX/VMS), first use editor to change filename # in "begin" line below to brito.tar-gz , then execute # uudecode brito.uu # gzip -d brito.tar-gz # tar -xvf brito.tar # uudecode $0 chmod 644 brito.tar.gz gunzip -c brito.tar.gz | tar -xvf - rm $0 brito.tar.gz exit