How to search and find files with certain extensions
The lines are self-explaining ...I hope :)
or the same in another notation
find ./ -regex ".*\(py\|html\|tpl\)$"
or the same in another notation
find ./ -iname "*.py" -or -iname "*.tpl" -or -iname "*.html"
Comments
Post a Comment