Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re: Find all JPEG files in a directory

by gri6507 (Deacon)
on Aug 11, 2005 at 20:29 UTC ( [id://483119]=note: print w/replies, xml ) Need Help??


in reply to Find all JPEG files in a directory

I know you want to do this a perl-ish way, but such a task could be just as easily be done from the command line -  find . | grep jpg

Replies are listed 'Best First'.
Re^2: Find all JPEG files in a directory
by extremely (Priest) on Aug 12, 2005 at 13:21 UTC
    "grep jpg"? No login for you on my systems. :) One of these will actually find most if not all of the files with a JPEG extension without matching files like "not_a_jpg.gif". Whenever you have a fairly simple match, you'll come out ahead using the find built-ins rather than piping to grep.

    find . -name '*.jpg' -o -name '*.jpeg' -o -name '*.JPG' -o -name '*.JPEG'

    find ./ -name '*.[Jj][Pp][Gg]' -o -name '*.[Jj][Pp][Ee][Gg]'

    And if you must use grep, do it right!

    find . | grep -i '[.]jpe\?g$'

    find . | egrep -i '[.]jpe?g$'

    --
    $you = new YOU;
    honk() if $you->love(perl)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://483119]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (6)
As of 2024-04-18 10:17 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found