the_silver_searcher:不要搜索文件名为X的文件。

时间:2014-03-07 22:29:53

标签: search

我正在使用aghttps://github.com/ggreer/the_silver_searcher/blob/master/doc/ag.1.md)来搜索目录中的模式。

我想做的是:

ag SearchPattern --excludeFilesThatHaveThisIntheFileName *Test

可能吗?

1 个答案:

答案 0 :(得分:0)

您要查找的选项是--ignore。从手册页:

  --ignore PATTERN:
       Ignore files/directories matching this pattern.
       Literal file and directory names are also allowed.

在测试之后,模式似乎必须是文件glob而不是正则表达式 你的线路将成为:

  

ag SearchPattern --ignore * Test