使用 sed 替换
我想动态替换 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用双引号
"
进行变量扩展:正如@Joachim所说,使用不同的分隔符。 例如,
Use double quotes
"
for variable expansion:and as @Joachim said, use different delimiter. For example,
主题的变化:我总是使用单引号来包围 sed/awk/perl... 命令,因为 shell 有时在使用双引号时会让您陷入困境。
我发现最好双引号变量:
作为“皮带和大括号”,并且我通常在 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:
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.