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.
複数のhgリポジトリがあります
ここで、これらのリポジトリのヒントリビジョンのすべてのソースコードからキーワードを見つけたいと思います。
似ていますが、hgリビジョンファイルgrep keyword hg_dirに限定されています。tip
grep keyword hg_dir
tip
どうすればこれを行うことができますか?
さて、自分で方法を見つけました。完璧ではありませんが、機能します。
for dir in ./*; do hg grep keyword . done;
ただし、を使用してすべての結果を取得することはできませんhg grep -r tip。
hg grep -r tip
-Aまたはのようなgrepのオプションを使用することはできません-B。
-A
-B