$ md tmp
$ cd tmp
$ echo > asdf
$ echo > asdg
$ echo > asdh
$ echo > bsdf
$ echo > bsdg
$ echo > bsdh
$ echo > csdh
$ echo > csda
$ echo > csdd
$ findrule . -file -name *h
asdh
bsdh
csdh
$ findrule . -file -name a*
asdf
asdg
asdh
$ findrule . -file -name b*
bsdf
bsdg
bsdh
$ findrule . -file -name *h
asdh
bsdh
csdh
$ findrule . -file -name {a*,b*,*h}
asdf
asdg
asdh
bsdf
bsdg
bsdh
csdh
$ cd ..
$ findrule tmp -file -name {{a,b}*,*h}
tmp/asdf
tmp/asdg
tmp/asdh
tmp/bsdf
tmp/bsdg
tmp/bsdh
tmp/csdh
|