Never been to DZone Snippets before?

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 (See related posts)

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"

You need to create an account or log in to post comments to this site.


Click here to browse all 4858 code snippets

Related Posts