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