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.
哎呀,我只是不记得了……我最近有一种很酷的方式来使用agwithsed来查找和替换。要点很简单,例如:
ag
sed
ag foo -l | ... magic here ... sed 's/foo/bar/g'
那是行不通的,但你可能只知道是什么。谢谢!
PS。为 Silver Searcher 欢呼三声。
xargs 是您正在寻找的魔法:
ag -l 'foo'|xargs sed -i 's/foo/abcd/g'