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.
git grep fizzbuzz $(git rev-list --all) fatal: Invalid object name 'Symbol's function definition is void'.
当然,相同的命令M-x shell可以正常工作。
M-x shell
我如何说服 eshell 我不想在这里执行 elisp 表达式,这样我才能得到我如此清楚地寻求的 git grep goodness?
尝试:
git grep fizzbuzz ${git rev-list --all}
如果我用 backtics 包装 $() 可以在我的 emacs 中工作,例如:
git grep fizzbuzz `$(git rev-list --all)`