Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用银色搜索器如何忽略多个目录?
我试过ag foo --ignore-dir dir1,dir2了,但它不起作用。
ag foo --ignore-dir dir1,dir2
您也可以这样做(无需重复标志):
ag foo --ignore-dir={dir1,dir2}
您需要将此格式用于多个目录。否则,如果它只有一个目录,则需要提供一个逗号,例如:ag foo --ignore-dir={dir1,}.
ag foo --ignore-dir={dir1,}
您可以多次指定参数
ag foo --ignore-dir dir1 --ignore-dir dir2