find
has a print0 option that uses null characters instead of \n as separators.xargs
has a -0 option that uses the same separator when working on the args. So:
find . -name -print0 | xargs -0 ls -l
find
has a print0 option that uses null characters instead of \n as separators.xargs
has a -0 option that uses the same separator when working on the args. So:
find . -name -print0 | xargs -0 ls -l