How can the following be changed example so that it does glob expansion after loop variable substitution?
for i in a b c
do echo $i/*.txt
done
UPDATE: This normally does work, however set -f had been done earlier in the script I'm looking at.