In one offs, the \. So `ls Annoying\ File\ With\ Spaces`
How to kill the space?
rename 's/ /_/' *will replace spaces with _ for all files/dirs in the current directory.
How to deal with spaces while using find?
find . -name \*wav -print0 | xargs -0 lsThis terminates files with the null character instead of a space. Both xargs and find need to do this.