I want to pipe file names to other programs, but they all choke when the names contain spaces.
Let's say I have a file called.
foo bar
How can I get findfind to return the correct name?
Obviously I want:
foo\ bar
or:
"foo bar"
EDITEDIT: I don't want to go through xargsxargs, I want to get a correctly formatted string out of findfind so that I can pipe the string of file names directly to another program.