如何从命令结果中转义空格和其他符号find
?例如,如果结果中有空格和其他符号,则此方法不起作用:
find -maxdepth 5 -type d -print | xargs du -sk | sort -rn
答案1
您想使用find ... -print0
和xargs -0
。
如何从命令结果中转义空格和其他符号find
?例如,如果结果中有空格和其他符号,则此方法不起作用:
find -maxdepth 5 -type d -print | xargs du -sk | sort -rn
您想使用find ... -print0
和xargs -0
。