Posts

Showing posts from May, 2020

Linux: Recursively delete files that match a pattern or filename using 'find'

find . -name "*.bak" -type f -delete But use it with precaution. Run first: find . -name "*.bak" -type f