# make a BACKUP!
# run this first to verify these are
# the files you want to delete
find /home/gedalia/Maildir/.INBOX.cvs/ -name ".imap.index*" -exec echo {} \;
# then run this to delete them
# by default, on RHEL4, you are asked to confirm
find /home/gedalia/Maildir/.INBOX.cvs/ -name ".imap.index*" -exec rm {} \;
|