You could also simply use find "-printf", as in :
find . -printf ""%p" " | xargs your_command
where:
%p = file-path
This will surround every found file-path with quotes and separate each item with a space.
This avoids the use of multiple commands.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…