Deleting files with a certain extension across directories

This will delete all *.txt.gzip files

find . -name “*.txt.gz” -exec rm -rf “{}” \;


QR Code
QR Code tech:linux:delete_files_using_find (generated for current page)