Find directories that have files that match a pattern
Replace *.mp3 with a string that will be used to match file below where you're at.
$ find . -name '*.mp3' | sed 's/^\.\/\([^/]*\)\/.*$/\1/g' | uniq
[Click to add or edit comments])
Please prepend comments below including a date