Doing:
print -l ./somedir/**/*.{png,jpg}
gives expected listing of png
and jpg
files, and there are both types of them present, BUT
print -l ./somedir/**/*.{png,jpg}(Lk+50)
does NOT list my jpg
files greater than 50k, saying no matches found ./somedir/**/*.png(Lk+50)
.
Why it stops on png
here, not expanding on jpg
as well?