Copyright 2002,2003 A.P. Lawrence
-print0
You also need the -0 flag for xargs:
find . -print0 | xargs -0 whatever
-X (on BSD systems, not Linux) is related to this, but
find -X .
causes find to skip files that xargs wouldn't like.
Add your comments