<< thanks for the info lnxman, the find command works great 🙂
question though, are you sure grep doesn't permit *? because i can run grep string EEP*/.subscribers, and it will bring up a list of all the lists that begin with EEP, that have the string subscribed to it... >>
Your above command is fine, just notice that you are giving it a start pattern (EEP) and then a regular expression. That is fine, because the EPP limits the amount of args to be used by grep (from the shell) to those which only start with EPP,
whereas if you just use the * by itself, you are using ANYTHING, and EVERYTHING to grep your string (from the shell), which is a "NO, NO!"
You may want to research on the differences between regular expressions from a CLI, and apps with regexp capabilities.
Homework for you:
Do a man to understand the differences in regular expressions between:
grep (HINT: regular expressions translated by CLI)
egrep (HINT: regular expressions translated by egrep)
NOTE: egrep is the same as grep -e <regexp>.
/edit: Added note