Programming Tips - bash: How can I make my bash glob code work nicely when there are no files

Date: 2012aug17 OS: Linux Language: bash Q. bash: How can I make my bash glob code work nicely when there are no files that match? A. This code:
for I in *.jpg; do echo file=$I done
Works fine unless there are no .jpg files. In that case it executes the loop once with I set to *.jpg -- not very nice. Here's an variation that handles zero matches:
for I in $(ls *.jpg 2>/dev/null); do echo file=$I done
This works but is slightly slower since it shells out the ls command.