#!/bin/tcsh -f
#(ie run the tshell on this but don't read the .cshrc or .tcshrc)

echo version = 1.00 of clean 2006 Oct 26
# 2006 Oct 26, 1.00: origin 

foreach d (fur-11M9 fur-24M9)
   cd $d
      rm -f *
   cd ..
   rmdir $d
end
