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