For example, try following command in an empty directory:
$ for i in *; do echo $i; done *
Is there a way to suppress the printout of
Set nullglob
shopt -s nullglob for i in *; do echo "$i"; done