====== Deleting files with a certain extension across directories ====== This will delete all *.txt.gzip files find . -name "*.txt.gz" -exec rm -rf "{}" \;