How to search and find files with certain extensions

The lines are self-explaining ...I hope :)
find ./ -regex ".*\(py\|html\|tpl\)$"

or the same in another notation
find ./ -iname "*.py" -or -iname "*.tpl" -or -iname "*.html"

Comments

Popular posts from this blog

Tuning ext4 for performance with emphasis on SSD usage

NetBeans 6.1: Working with Google´s Android SDK, Groovy and Grails