Makefile 中 sed 的单引号字符串

发布于 2024-10-08 18:34:31 字数 288 浏览 0 评论 0原文

我正在从我的 Makefile 调用 sed,并且此行不起作用:

sed -i -r 's|^(3)$|5|' file;

如果我从终端调用,则完全没问题,但 GNU make 报告以下错误:

sed: -e 表达式 #1,字符 8: 未终止的“s”命令

有什么想法可以解决这个问题吗?您能提供有关 Makefile 如何处理字符串的手册吗?谢谢。

I am calling sed from my Makefile, and this line doesn't work:

sed -i -r 's|^(3)$|5|' file;

It's perfectly fine if I call from the terminal, but GNU make reports the following error:

sed: -e expression #1, char 8:
unterminated `s' command

Any ideas how I can fix this, and could you provide any manual on how Makefile deals with strings? Thanks.

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

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

发布评论

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

评论(1

旧时浪漫 2024-10-15 18:34:31

$ 在 makefile 中具有特殊含义。使用 $$ 取消它:

sed -i -r 's|^(3)$|5|' file;

$ has a special meaning in makefiles. Use $$ cancel it:

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