This a uuencoded, tarred and gzipped package of a LaTeX source file and 12 eps figures BODY #!/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., trans.uu # (uudecode ignores these header lines and starts at begin line below) # Then say csh trans.uu # or explicitly execute the commands (generally more secure): # uudecode trans.uu ; gunzip trans.tar.gz ; # tar -xvf trans.tar # On some non-unix (e.g. VAX/VMS), first use editor to change filename # in "begin" line below to trans.tar-gz , then execute # uudecode trans.uu # gzip -d trans.tar-gz # tar -xvf trans.tar # uudecode $0 chmod 644 trans.tar.gz gunzip -c trans.tar.gz | tar -xvf - rm $0 trans.tar.gz exit