find . -type f -name "*.bak" -exec rm -f {} \;
Hay otros ejemplos muy útiles aquí: http://www.cyberciti.biz/faq/linux-unix-how-to-find-and-remove-files/
find . -type f -name "*.bak" -exec rm -f {} \;
Hay otros ejemplos muy útiles aquí: http://www.cyberciti.biz/faq/linux-unix-how-to-find-and-remove-files/