#! /bin/csh -f

# shell script clean: removes all backup and checkpoint files in current
# directory and all subdirectories

find . \( -name ',*' -o -name '#*#' -o -name '*BAK' -o -name '.*BAK'   \
-o -name '*CKP' -o -name '.*CKP' -o -name '*~' -o -name '.*~'          \
-o -name '.B*' -o -name '.C*' \) -exec /bin/athena/delete -f {} \; &
