Unix 命令行历史替换 ^foo^bar (用于多个替换)

发布于 2024-08-21 16:27:12 字数 519 浏览 2 评论 0原文

偶尔我会使用 bash 命令来替换上一个命令中的字符串:

^foo^bar

今天我想在以下行中进行替换,将所有出现的 checkbox 替换为 `radio:

$ git mv _product_checkbox_buttons.html.erb _product_checkbox_button.html.erb
$ ^checkbox^radio
git mv _product_radio_buttons.html.erb _product_checkbox_button.html.erb

所以它只替换第一次出现的情况。如何让它替换所有出现的情况?

bash --version
GNU bash, version 3.2.48(1)-release (x86_64-apple-darwin10.0)
Copyright (C) 2007 Free Software Foundation, Inc.

Occasionally I use the bash command to replace string in previous command:

^foo^bar

Today I wanted to make the replacement in the following line for replacing all occurrences of checkbox with `radio:

$ git mv _product_checkbox_buttons.html.erb _product_checkbox_button.html.erb
$ ^checkbox^radio
git mv _product_radio_buttons.html.erb _product_checkbox_button.html.erb

So it only replaces the first occurrence. How do I make it replace all occurrences?

bash --version
GNU bash, version 3.2.48(1)-release (x86_64-apple-darwin10.0)
Copyright (C) 2007 Free Software Foundation, Inc.

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

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

发布评论

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

评论(2

末骤雨初歇 2024-08-28 16:27:12

man bash^old^new 相当于 !!:s/old/new/。您希望 !!:gs/old/new/ 进行全局替换。

man bash says ^old^new is equivalent to !!:s/old/new/. You want !!:gs/old/new/ to globally replace.

酒儿 2024-08-28 16:27:12

一个简单的方法是:

fc -s checkbox=radio

我在 .bashrc 中定义了一个别名 r

alias r='fc -s'

然后您想要做的就是:

r checkbox=radio

参见 我对“隐藏的答案 bash 的功能”问题以了解详细信息。

An easy way of doing this would be:

fc -s checkbox=radio

I have an alias r defined in my .bashrc:

alias r='fc -s'

Then what you want to do becomes:

r checkbox=radio

See my answer to "hidden features of bash" question for details.

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