我使用的是ag v 2.2。如何配置 ag 以便它搜索以“.”开头的文件。除了所有其他文件?我注意到我有一个像这样的文件
$ cat client/.env.production
REACT_APP_PROXY=https://map.chicommons.coop
但是当我使用该文件中的术语搜索“ag”时,该术语没有出现......
$ ag 'map\.chicom' .
web/directory/settings.py
28:ALLOWED_HOSTS = ['127.0.0.1', 'localhost', 'dev.chicommons.coop', 'map.chicommons.coop']
client/config.js
3: ? "map.chicommons.com"
答案1
ag
有一个--hidden
包含点文件的标志:
ag --hidden 'map\.chicom'
和一个--unrestricted
包含所有文件的标志(通常会忽略.gitignore
、.hgignore
或.ignore
文件排除的文件):
ag --unrestricted 'map\.chicom'