Chinaunix

标题: 简单命令行处理问题,大家帮忙瞅瞅,多谢 [打印本页]

作者: unbutun    时间: 2012-07-02 20:48
标题: 简单命令行处理问题,大家帮忙瞅瞅,多谢
find . -name "*.a" -type f | xargs -i xxx {} | grep "hahaha"


现在不仅想要grep到内容,还想要打印出含有grep内容的文件名,

其中 xxx这个是不希望特定某个命令,大家有没有什么办法
作者: zooyo    时间: 2012-07-02 21:11
提示: 作者被禁止或删除 内容自动屏蔽
作者: ivyliner    时间: 2012-07-02 21:17
find . -exec grep -l XXX {} \; 可以不?
作者: unbutun    时间: 2012-07-02 21:26
有其他办法没?

回复 3# ivyliner


   
作者: personball    时间: 2012-07-03 09:14
本帖最后由 personball 于 2012-07-03 09:15 编辑

回复 1# unbutun


    其中 xxx这个是不希望特定某个命令这句不明白什么意思。。。
如果要前面几个命令的执行结果作为grep的目标文件,即grep搜索的内容,grep前面接xargs就行了
cmd1|cmd2| xargs grep xxxxx
PS:grep多个文件时,会自动输出文件名的。
作者: waker    时间: 2012-07-03 09:34
你想要知道馒头是哪棵麦子生产的,就要在每个环节上标注上信息,所以在xxxx上下功夫吧
作者: jils2013    时间: 2012-07-03 17:14
回复 3# ivyliner


    grep的话,如果 \;就不会打印文件名了,应该是 \+
作者: unbutun    时间: 2012-07-04 21:06
能具体解释下 \+ 吗?

回复 7# jils2013


   
作者: dahaoshanhe    时间: 2012-07-05 08:35
find . -type f -name "*.t" | xargs grep  想要的
你这样不行么~
作者: mengchang    时间: 2012-07-05 09:19
find . -type -f -iname "*.t" |grep  -i pattern
作者: jils2013    时间: 2012-07-05 11:48
回复 8# unbutun

; 是一次传一个结果给 命令,效果类似grep keyword a;grep keyword b;grep keyword c;...
+ 就是一次传多个,效果类似 grep keyword a b c ...


   
作者: tianrenly    时间: 2012-07-05 17:08
用grep

例如
grep eth1 -r /etc/*
作者: unbutun    时间: 2012-07-05 22:41
哦,了解了,同学,能否告知这个+的做法从哪里学来的?

多谢

回复 11# jils2013


   
作者: jils2013    时间: 2012-07-06 14:53
man 我记得好像是
作者: mingming_song    时间: 2012-07-09 15:37
  Repetition
       A regular expression may be followed by one of several repetition operators:
       ?      The preceding item is optional and matched at most once.
       *      The preceding item will be matched zero or more times.
       +      The preceding item will be matched one or more times.
       {n}    The preceding item is matched exactly n times.
       {n,}   The preceding item is matched n or more times.
       {,m}   The preceding item is matched at most m times.
       {n,m}  The preceding item is matched at least n times, but not more than m times.
回复 13# unbutun


   




欢迎光临 Chinaunix (http://bbs.chinaunix.net/) Powered by Discuz! X3.2