#!/bin/csh

############################################################
# Script to uuencode files of the form XXXXXX.YYYY to XXXXX.en
# Created 23/3/93 
# Lee Chia Ling
############################################################

while ("$1" != "")
# foreach i ( * )
        echo Encoding $1
        uuencode $1 $1 > "$1:r".en
        shift
end

Hosted by www.Geocities.ws

1