#!/bin/csh
foreach file ( index.shtml RasMol.tar.gz )
  rm -rf $file
end
foreach file (*)
  if ( -d $file ) then
    if ( -e $file/.undosymlinks ) then
      (cd $file; source .undosymlinks)
    endif
  endif
end

