Ricard's code gists


Remove all files by extension from folder recursively

Finds all the files with the “xml” extension and deletes them

find . -name "*.xml" -exec rm {} \;