I understand that one technique for dealing with spaces in filenames is to enclose the file name with single quotes: \"\'\".
Why is it that the following code called
What about this ? =)
#!/bin/sh for f in *; do printf -- '%s\n' "$f" done