sed:无法正确解释变量中的转义字符
我试图用变量的值替换文件中的一行(该变量包含 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要对反斜杠进行一层额外的转义,因为
sed
也会在变量展开后解释它们。You need one additional layer of escapes for the backslashes, as
sed
also interprets them after the variable has been expanded.