在 Bash 中使用 sed 转义域名中的点
我试图将 sed 替换的返回保留在变量中:
D=domain.com 回声 $D | sed 's/\./\\./g'
正确返回:domain\.com
D1=`echo $D | sed 's/\./\\./g'` 回声$D1
返回:domain.com
我做错了什么?
I am trying to keep the return of a sed substitution in a variable:
D=domain.com echo $D | sed 's/\./\\./g'
Correctly returns: domain\.com
D1=`echo $D | sed 's/\./\\./g'` echo $D1
Returns: domain.com
What am I doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
想象一下每次执行时 shell 都会重新扫描该行。因此,包含转义符的 echo $D1 会在解析行时将转义符应用于值,然后 echo 会看到它。解决办法就是更多的逃跑。
在嵌套 shell 语句上正确地进行转义可以让您生活在有趣的时代。
Think of shells rescanning the line each time it is executed. Thus echo $D1, which has the escapes in it, have the escapes applied to the value as the line is parsed, before echo sees it. The solution is yet more escapes.
Getting the escapes correct on nested shell statements can make you live in interesting times.
反斜杠运算符用反斜杠替换转义的反斜杠。您需要转义两次:
如果您愿意,您也可以转义第一个反斜杠。
The backtick operator replaces the escaped backslash by a backslash. You need to escape twice:
You may also escape the first backslash if you like.