--ignore
無視するファイルを指定するオプションがあります。現時点では、次の操作を実行するまで、複数のファイルを無視できます。--ignore file1 --ignore file2.......
試しても--ignore "*assets*|*scripts*"
効果はありません。それでは、私が知らないことがありますか?
ベストアンサー1
次のように中括弧拡張を使用できます。
ag pattern --ignore={'*assets*','*scripts*'} path_to_search
または、次のようにGlenはここで提案します、プロセス交換:
ag pattern -p <(printf "*%s*\n" assets scripts) path_to_search