LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 1612|回复: 4

find, xargs传递的文件名参数中含有空格如何处理

[复制链接]
发表于 2007-1-13 11:47:48 | 显示全部楼层 |阅读模式
find . | xargs -n1 cat , 如果文件名中含有空格, 会被认为是两个文件, 请问如果处理? 谢谢?
发表于 2007-1-13 12:22:39 | 显示全部楼层
find . -exec cat {} \;
回复 支持 反对

使用道具 举报

 楼主| 发表于 2007-1-13 15:58:18 | 显示全部楼层
Post by lastart
find . -exec cat {} \;
谢谢.

因为查找到的数据还需要过滤, 所以我这样使用:
find . -exec echo '"{}"' \; 把路径用双引号包起来, 再往下传.
回复 支持 反对

使用道具 举报

发表于 2007-1-13 19:42:11 | 显示全部楼层
find . -print0 | xargs -n1 -0 cat

man xargs:
Because  Unix  filenames  can contain blanks and newlines, this default
behaviour is often problematic; filenames containing blanks and/or new-
lines  are  incorrectly  processed by xargs.  In these situations it is
better to use the `-0' option, which  prevents  such  problems.    When
using  this  option you will need to ensure that the program which pro-
duces the input for xargs also uses a null character  as  a  separator.
If that program is GNU find for example, the `-print0' option does this
for you.
回复 支持 反对

使用道具 举报

发表于 2010-12-21 19:48:39 | 显示全部楼层
find . -print | xargs -i echo '"{}"'
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表