sed:无法正确解释变量中的转义字符

发布于 2024-12-05 01:44:41 字数 504 浏览 0 评论 0原文

我试图用变量的值替换文件中的一行(该变量包含 Windows 路径)。尽管该变量正确打印到 STDOUT,但当在 sed 中使用它来替换感兴趣的行时,反斜杠会消失。

知道如何解决这个问题吗?欢迎其他想法。

代码:

WINPATH="\\\\hd-place\\stor1\\fold1\\archive\\$VAR1.$Var2\\Viewer"

将其打印到屏幕上(应该如此):\\hd-place\stor1\ Fold1\archive\$VAR1.$Var2\Viewer

我使用的 SED 命令是: cat file.xml | sed“3c\ <\RunFolder>$WINPATH"(请原谅 XML 标记内的斜杠)

这会输出:

\hd-placestor1fold1archive$VAR1.$Var2Viewer

我想要的地方是: \\hd-place\stor1\fold1\archive\$VAR1.$Var2\Viewer

I am trying to replace a line in a file with the value of a variable (the variable contains a windows path). Although the variable prints correctly to STDOUT, when used in sed to replace the line of interest, the backslashes disappear.

Any idea how to remedy this? Other ideas welcome.

CODE:

WINPATH="\\\\hd-place\\stor1\\fold1\\archive\\$VAR1.$Var2\\Viewer"

print this to screen (as it should): \\hd-place\stor1\fold1\archive\$VAR1.$Var2\Viewer

The SED command I'm using is: cat file.xml | sed "3 c\
<\RunFolder>$WINPATH</RunFolder>" (please excuse the slashes inside the XML tags)

This outputs this:

\hd-placestor1fold1archive$VAR1.$Var2Viewer

Where as I want this:
\\hd-place\stor1\fold1\archive\$VAR1.$Var2\Viewer

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

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

发布评论

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

评论(1

暮色兮凉城 2024-12-12 01:44:41

您需要对反斜杠进行一层额外的转义,因为 sed 也会在变量展开后解释它们。

You need one additional layer of escapes for the backslashes, as sed also interprets them after the variable has been expanded.

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