#!/bin/csh
foreach file ( rasmol.hlp rasmol.hlp.gz raswin.hlp raswin.hlp.gz )
  rm -rf $file
end
foreach file (*)
  if ( -d "$file" ) then
    if ( -e "$file"/.undosymlinks ) then
      (cd "$file"; source .undosymlinks)
    endif
  endif
end

