我正在使用ag
(https://github.com/ggreer/the_silver_searcher/blob/master/doc/ag.1.md)来搜索目录中的模式。
我想做的是:
ag SearchPattern --excludeFilesThatHaveThisIntheFileName *Test
可能吗?
答案 0 :(得分:0)
您要查找的选项是--ignore
。从手册页:
--ignore PATTERN: Ignore files/directories matching this pattern. Literal file and directory names are also allowed.
在测试之后,模式似乎必须是文件glob而不是正则表达式 你的线路将成为:
ag SearchPattern --ignore * Test