find . \( -name "*.dvi*" -o -name "*.aux*" \) -ok rm {} \; should do it - if you don't want to confirm every 'rm' command, use -exec instead of -ok. See the manual page!!