#!/bin/csh -f # this uuencoded Z-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., n-n.uu # (uudecode ignores these header lines and starts at begin line below) # then say csh n-n.uu # or explicitly execute the commands (generally more secure): # uudecode n-n.uu ; uncompress n-n.ps.Z ; # on some non-unix (e.g. VAX/VMS), first use an editor to change the # filename in "begin" line below to n-n.ps_Z , then execute # uudecode n-n.uu # compress -d n-n.ps_Z # uudecode $0 chmod 644 n-n.ps.Z uncompress n-n.ps.Z rm $0 exit