在 Bash 中使用 sed 转义域名中的点

发布于 2024-11-29 20:07:40 字数 283 浏览 0 评论 0原文

我试图将 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 技术交流群。

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

发布评论

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

评论(2

剧终人散尽 2024-12-06 20:07:40
D2=`echo $D | sed 's/\./\\\\./g'`
echo $D2

想象一下每次执行时 shell 都会重新扫描该行。因此,包含转义符的 echo $D1 会在解析行时将转义符应用于值,然后 echo 会看到它。解决办法就是更多的逃跑。

在嵌套 shell 语句上正确地进行转义可以让您生活在有趣的时代。

D2=`echo $D | sed 's/\./\\\\./g'`
echo $D2

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.

·深蓝 2024-12-06 20:07:40

反斜杠运算符用反斜杠替换转义的反斜杠。您需要转义两次:

D1=`echo $D | sed 's/\./\\\\./g'`

如果您愿意,您也可以转义第一个反斜杠。

The backtick operator replaces the escaped backslash by a backslash. You need to escape twice:

D1=`echo $D | sed 's/\./\\\\./g'`

You may also escape the first backslash if you like.

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