List directories containing files that match a regular expression

5

5

I would like to set up a simple filtering system on my FreeBSD server that allows me to create arbitrary "views" of directories.

For instance, I'd like to be able to list all directories that match the pattern "*.mp3" but only display the directory name.

For instance, if I ran the command on my music folder I would like to be able to show all directories that have mp3s in them in one command, and all directories that have flac files in them as a separate command.

The command find . -name "*.mp3" almost does what I want but it displays one entry for each file. Is there a way to limit find to one result per directory?

javanix

Posted 2011-11-10T17:28:56.650

Reputation: 609

Answers

3

Use this script:

find / -name "*.mp3" | grep -o '.*/' | sort | uniq > mp3files

Farhan

Posted 2011-11-10T17:28:56.650

Reputation: 391

Perfect, thanks. I prefer avoiding xargs if possible for clarity of command. – javanix – 2011-11-14T18:49:14.207

4

Hows about:

find . -name '*.mp3' -print0 |xargs -0 -i dirname {} |uniq

I get something like:

./mnt/mp3/Adicts/Complete Singles Collection(1995)

./mnt/mp3/Adicts/Rise and Shine(2002)

./mnt/mp3/Adicts/Songs of Praise(1981)

./mnt/mp3/Adicts/Twenty-seven(1992)

./mnt/mp3/Adicts/Ultimate Addiction

./mnt/mp3/Adicts/Very Best Of Adicts(1998)

matt

Posted 2011-11-10T17:28:56.650

Reputation: 2 176

3Shorter on Linux: find . -name '*.mp3' -printf '%h\n' | uniq Unfortunately I don't know if FreeBSD's find has -printf. – ephemient – 2011-11-10T22:36:31.567