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