SyntaxFix
Write A Post
Hire A Developer
Questions
I found this solution to be quite handy. It uses the -or option in find:
-or
find
find . -name \*.tex -or -name "*.png" -or -name "*.pdf"
It will find the files with extension tex, png, and pdf.
tex
png
pdf