免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2107 | 回复: 6
打印 上一主题 下一主题

请教:find 的 -print 选项 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-01-20 09:44 |只看该作者 |倒序浏览
请问高手 加不加-print 选项的输出结果为什么不一样?

想要搜索本目录下所有的以test开头的文件,但排除./shell_stydy目录下的文件。
wqfhenanxc@ubuntu:~$ find . -path "./shell_study" -prune -o -name "test*"
./test3
./test1
./shell_study
./test2
./test
./test.sh

wqfhenanxc@ubuntu:~$ find . -path "./shell_study" -prune -o -name "test*" -print
./test3
./test1
./test2
./test
./test.sh

论坛徽章:
0
2 [报告]
发表于 2010-01-20 10:36 |只看该作者
你试试这个命令也许能找到点感觉:
find . -path "./shell_study" -prune -print -o -name "test*" -print


我也不知道什么原因。
还请高人指点了。

论坛徽章:
0
3 [报告]
发表于 2010-01-20 11:06 |只看该作者
如果没有-print, 那么默认动作为-print     .-path "./shell_study" -prune  为真时就执行-print,输出了"./shell_study。
如果指定动作-print, 那么就没有默认动作了.-path "./shell_study" -prune  为真时,没有动作可以执行,也就没有输出了log文件。

论坛徽章:
0
4 [报告]
发表于 2010-01-20 11:06 |只看该作者
可以man find   
查找prune  第一条就可以看到了...
这个答案是黑哥告诉我的

论坛徽章:
0
5 [报告]
发表于 2010-01-20 11:19 |只看该作者
多谢多谢!
man find
If the expression contains no actions other than -prune, -print is performed on all files for which the expression is true.

论坛徽章:
0
6 [报告]
发表于 2010-01-20 11:21 |只看该作者
原帖由 wqfhenanxc 于 2010-1-20 09:44 发表
请问高手 加不加-print 选项的输出结果为什么不一样?

想要搜索本目录下所有的以test开头的文件,但排除./shell_stydy目录下的文件。
wqfhenanxc@ubuntu:~$ find . -path "./shell_study" -prune -o -name  ...



ubuntuer 说得没错, 再清楚一点:

find . -path "./shell_study" -prune -o -name "test*"  等价于:

find . -path "./shell_study" -prune -print -o -name "test*" -print


find . -path "./shell_study" -prune -o -name "test*" -print  : 由于 -o 后面的不表达式有-print, -o前面没有指定-print 就不输出 (也就是说一切按照指定的动作执行)

论坛徽章:
2
2015年亚洲杯之日本
日期:2015-02-18 15:57:052015年辞旧岁徽章
日期:2015-03-03 16:54:15
7 [报告]
发表于 2015-02-18 16:11 |只看该作者
本帖最后由 swz2015 于 2015-02-18 16:12 编辑

find . -path "./shell_study" -prune -o -name "test*";
<=>find . -path "./shell_study" -prune -print -o -name "test*" -print;
<=>find . -path "./shell_study" -prune -print -o -name "test*"; find . -path "./shell_study" -prune -o -name "test*" -print;
顺祝新年快乐。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP