If your file names are simple enough you can use glob expansion to get a list of them. This glob expansion will not include any parent directories (but may include subdirectories).
files=(*B_* *D_*) #stores an array of file names in $files
If the pattern is more complex and you require regex, you can use the find utility.
files=($(find . -type f -regex ".*[BD]_?.*))
Find will return the full path of the files, so you will need to strip the leading path. One approach to this is to use parameter substitution.
stripped_files=$(for f in "${files[@]}"; do echo ${f##*/}; done) #iterate over array values
Finally you can write this out to a file. (Using herestrings)
>outfile <<<$stripped_files
ls *B_* *D_*not sufficient? – anishsane Nov 22 '12 at 14:46B_orB6_? – F. Hauri Nov 22 '12 at 15:15