#!/bin/csh -f

if (.$1. == ..) then
   set DIR=$cwd
else
   set DIR=$1
endif

if (-d $DIR) then
    /bin/cat $DIR/.alex.update >& /dev/null
else 
    echo "alexupdate did not find a valid directory to update"
endif



