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
[ `ls glob* 2>/dev/null | head -n 1` ] && echo true