使用 sed 替换

发布于 2024-12-11 19:50:38 字数 186 浏览 0 评论 0原文

我想动态替换 IP,但是 sed 正在放置单词 $IP 而不是实际值。

 IP=10.50.33.44
 PORT=5774
 sed -i~ 's/https:\/\/10.11.12.13:8443/https:\/\/$IP:$PORT/g' abc.txt

你能帮我得到正确的值吗?

I want to replace IP dynamically but somehwo sed is placing word $IP instead of actual value.

 IP=10.50.33.44
 PORT=5774
 sed -i~ 's/https:\/\/10.11.12.13:8443/https:\/\/$IP:$PORT/g' abc.txt

Can you help me out in getting the correct value?

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

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

发布评论

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

评论(2

回忆那么伤 2024-12-18 19:50:38

使用双引号"进行变量扩展:

 sed -i~ "s/https:\/\/10.11.12.13:8443/https:\/\/$IP:$PORT/g" abc.txt

正如@Joachim所说,使用不同的分隔符。 例如,

 sed -i~ "s;https://10.11.12.13:8443;https://$IP:$PORT;g" abc.txt

Use double quotes" for variable expansion:

 sed -i~ "s/https:\/\/10.11.12.13:8443/https:\/\/$IP:$PORT/g" abc.txt

and as @Joachim said, use different delimiter. For example,

 sed -i~ "s;https://10.11.12.13:8443;https://$IP:$PORT;g" abc.txt
秋日私语 2024-12-18 19:50:38

主题的变化:我总是使用单引号来包围 sed/awk/perl... 命令,因为 shell 有时在使用双引号时会让您陷入困境。
我发现最好双引号变量:

sed -i~ 's/https:\/\/10.11.12.13:8443/https:\/\/'"$IP"':'"$PORT"'/g' abc.txt

作为“皮带和大括号”,并且我通常在 bash 的命令行中以交互方式编写命令,键绑定 MCe(在大多数键盘上是 Alt-Control-e)将进行插值发送之前的命令。让您直观地看到该命令真正得到了什么。

Variation on a theme: I always use single quotes to surround sed/awk/perl... commands as the shell can sometimes trip you up when using double quotes.
I find it best to double quote the variables:

sed -i~ 's/https:\/\/10.11.12.13:8443/https:\/\/'"$IP"':'"$PORT"'/g' abc.txt

As a "belt and braces" and as I usually compose my commands interactively at the command line in bash, the key-binding M-C-e (that's Alt-Control-e on most keyboards) will interpolate the command before it's sent. Letting you visually see what the command is really getting.

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