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.
我想使用 vi 编辑器从文本文件中删除多行。我实际上可以对这些特殊模式进行 grep 并列出它们,但我如何才能从文件中动态删除它们。如果有任何命令,请分享您的想法。
在vim(并且可能vi)中,
vim
vi
:g/foo/d
将删除与模式匹配的所有行foo。
foo