How to use find command to find all files with extensions from list?
Posted
by Kirzilla
on Stack Overflow
See other posts from Stack Overflow
or by Kirzilla
Published on 2010-04-12T11:07:20Z
Indexed on
2010/04/12
11:23 UTC
Read the original article
Hit count: 306
Hello,
I need to find all image files from directory (gif, png, jpg, jpeg).
find /path/to/ -name "*.jpg" > log
How to modify this string to find not only .jpg files?
Thank you.
© Stack Overflow or respective owner