vote up 1 vote down star
1

I just want to get the files from the current dir and only output .mp4 .mp3 .exe files nothing else. So I thought I could just do this:

ls | grep \.mp4$ | grep \.mp3$ | grep \.exe$

But no, as the first grep will output just mp4's therefor the other 2 grep's won't be used.

Any ideas?

PS, Running this script on Slow Leopard.

flag

This really is the wrong approach -- instead of using grep, use shopt -s nullglob and then just refer to *.exe *.mp3 *.mp4. See mywiki.wooledge.org/ParsingLs – Charles Duffy Sep 19 at 6:15

8 Answers

vote up 9 vote down check

egrep -- extended grep -- will help here

ls | egrep '\.mp4$|\.mp3$|\.exe$

should do the job.

link|flag
1  
+1 you got it in 34 seconds before me – Jonathan Fingland Sep 19 at 3:26
Thats it! Thanks Just realized I should have it case insensitive, so I'm using: ls | egrep -i '\.mp4$|\.mp3$|\.exe$ Incase anyone else needs help with that one day. Im always surprised by the speed I get my answer on here. – Mint Sep 19 at 3:36
I can't see how this would work. ls without any options produces output in columns. Anchoring to the end of the line will not match properly. – camh Sep 19 at 6:44
@camh: ls to a terminal (or with -C option) produces multi-column output. ls to a pipe (or with -1) has single column output. (Compare output of ls with ls | cat). – mobrule Sep 19 at 7:07
vote up 1 vote down
ls | grep "\.mp4$
\.mp3$
\.exe$"
link|flag
Could you explain the down vote please? – Jeff Mc Sep 19 at 3:28
Thanks, but a bit inconvenient using up several lines. – Mint Sep 19 at 3:38
vote up 5 vote down

the easiest way is to just use ls

ls *.mp4 *.mp3 *.exe
link|flag
1  
Thanks, but I already tried that and I didn't like the errors you get when there is no file. Thou I could of fixed that by doing: ls *.mp4 *.mp3 *.exe 2> /dev/null Only thought of that now thou :P – Mint Sep 19 at 3:40
I am surprised that ls doesn't have some sort of silent option. – MitMaro Sep 19 at 3:47
None that I could find. – Mint Sep 19 at 3:54
1  
In bash, you can do "set -o nullglob", and you wont get the errors. – camh Sep 19 at 4:10
My mistake - that should be "shopt -s nullglob" not the set -o command – camh Sep 19 at 5:54
show 1 more comment
vote up 4 vote down

No need for grep. Shell wildcards will do the trick.

ls *.mp4 *.mp3 *.exe

If you have run

shopt -s nullglob

then unmatched globs will be removed altogether and not be left on the command line unexpanded.

If you want case-insensitive globbing (so *.mp3 will match foo.MP3):

shopt -s nocaseglob
link|flag
Same comment as I gave to Good Time Tribe. – Mint Sep 19 at 3:54
vote up 1 vote down

Just in case: why don't you use find?

find -iname '*.mp3' -o -iname '*.exe' -o -iname '*.mp4'
link|flag
vote up 0 vote down

In case you are still looking for an alternate solution:

ls | grep -i -e "\.tcl$" -e "\.exe$" -e "\.mp4$"

Feel free to add more -e flags if needed.

link|flag
vote up 2 vote down

Why not:

ls *.{mp3,exe,mp4}

I'm not sure where I learned it - but I've been using this.

link|flag
vote up 2 vote down

Use regular expressions with find:

find . -iregex '.*\(mp3\|mp4\|exe\)' -printf '%f\n'

If you're piping the filenames:

find . -iregex '.*\(mp3\|mp4\|exe\)' -printf '%f\0' | xargs -0 dosomething

This protects filenames that contain spaces or newlines.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.