DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Find Files With Certain Extensions
Searches the current directory and deeper for several extensions. In this example both files mathing 'php', 'html' and 'tpl' match the search.
find ./ -regex ".*\(php\|html\|tpl\)$"
As an alternative you could also use:
find ./ -iname "*.php" -or -iname "*.tpl" -or -iname "*.html"





