If I want to check for the existence of a single file, I can test for it using test -e filename or [ -e filename ].
test -e filename
[ -e filename ]
Supposing I have a glob
I did not see this answer, so I thought I'd put it out there:
set -- glob* [ -f "$1" ] && echo "found $@"