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(m) 中文件的所有行加倍
例子:
foo bar hello world
结果:
foo bar hello world foo bar hello world
我试过复制/粘贴命令没有结果。
您可以在转义模式下执行以下操作:
1G yG G p
1GyGP
转到第一行的第一个字符,拉出整个文件并将其插入上面。
你可以试试这个
gg :s/\_.*/&&
以下命令应该可以解决问题
:%s/\(.*\)/\1\1/