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 repos
现在我想从这些 repos 中所有提示修订的源代码中找到一个关键字。
这就像grep keyword hg_dir但仅限于 hgtip修订文件。
grep keyword hg_dir
tip
我怎么能这样做?
好吧,我自己找到了一种方法,虽然不完美,但很有效。
for dir in ./*; do hg grep keyword . done;
但是,您无法使用hg grep -r tip.
hg grep -r tip
你不能使用 grep 的选项,比如-Aor -B。
-A
-B