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