UNIX 上 vi 编辑器中的简单问题

发布于 2024-11-23 19:31:23 字数 147 浏览 1 评论 0原文

我怎样才能添加一些文字,如“ABC” 在 vi 编辑器中所有行的开头? 这不行!

%s/^/^ABC

我知道这个命令用于替换文本

%s/vggv/uggv/g

how could i add some text like 'ABC'
at the beginning of all the lines in vi editor?
this doesnot work!

%s/^/^ABC

i know this command is used for replacing text

%s/vggv/uggv/g

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

挽清梦 2024-11-30 19:31:23

您想要:

:%s/^/ABC/g

这会将 ABC 放在每一行的前面。

不要忘记前面的 :

You want:

:%s/^/ABC/g

That will put ABC in front of every line.

Don't forget the : in front

心房的律动 2024-11-30 19:31:23

我真的很喜欢像这样的普通命令:

:%normal IABC

I really love the normal command for things like these:

:%normal IABC
秋千易 2024-11-30 19:31:23

:%s/^/ABC/ 不适合您吗?

Doesn't :%s/^/ABC/ work for you?

潜移默化 2024-11-30 19:31:23

正如其他人所说, :%s/^/ABC 就可以了。考虑一下 ^ 的含义。它是一个逻辑结构,而不是文件中的实际字符。因此,您并没有真正替换它,因此不必使用 ^ABC。事实上,正如您所见,^ 在该上下文中被视为字符串。

如果您想跳过仅包含空格的行,可以使用 :v/^[:space:]*$/s/^/ABC

As others have said, :%s/^/ABC will do the trick. Consider what ^ means. It is a logical construct, not an actual character in the file. Therefore, you're not really replacing it, so you don't have to use ^ABC. In fact, as you've seen, ^ is treated as a string in that context.

If you wanted to skip lines that only contain whitespace, you could use :v/^[:space:]*$/s/^/ABC.

灵芸 2024-11-30 19:31:23
:%s/^/ABC/g

这将在 vi 编辑器中的每一行前面添加 ABC

:%s/^/ABC/g

this will add ABC in front of every line in vi editor

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文