$ touch 'first file' 'second file'
$ ls
first file second file
$ for f in $(ls); do cat "$f"; done
cat: first: No such file or directory
cat: file: No such file or directory
cat: second: No such file or directory
cat: file: No such file or directory