echo *
... will show files in the current folder through file globbing on Bourne compatible shells.
In Bash, thisThis lists all files down one level:
echo */*
 In Bash, if globstar is set (set with shopt -s globstar, unset with shopt -u globstar), this will list all files recursively:
echo **