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
ここでelisp式を実行しようとしていないことをeshellに納得させて、私が明確に求めているgit grepの良さを得るにはどうすればよいですか?
試す:
git grep fizzbuzz ${git rev-list --all}
$()をバックティックでラップすると、emacsで機能します。例:
git grep fizzbuzz `$(git rev-list --all)`