Change file extensions recursively October 24, 2021 How to change the extension of multiple files at once on Linuxish systems: find . -type f -iname "auditTrail.csv" -print0 | while IFS= read -r -d '' file; do mv -- "$file" "${file%csv}zip" done Read more