GNU Makefile 和 bash - 转义

发布于 2024-11-25 10:00:09 字数 227 浏览 0 评论 0原文

在目标的配方中,我想生成一个处理命令行参数的 bash 脚本...但是转义的 Makefile 逃过了我的

目标: deps echo "./a.out \"$@\"" > wrapper.a.out

然而,$@ 在 GNU Makefile 中有特殊含义,它会把事情搞乱。

尝试了 $@、$$@ ...似乎没有任何效果。

那么,这样做的正确方法是什么?

In the recipe for a target, I want to generate a bash script which processes command line arguments ... however the Makefile escaping escapes me

target: deps
echo "./a.out \"$@\"" > wrapper.a.out

However, $@ has a special meaning in a GNU Makefile which messes things up.

Tried $@, $$@ ... nothing appears to work.

So, what is the right way to do this?

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

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

发布评论

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

评论(1

琴流音 2024-12-02 10:00:09
echo './a.out "$@"' >wrapper.a.out

您需要将 $ 加倍才能使其通过 make。然后在 echo 命令中使用单引号,这样生成的用于运行 echo 的 shell 就不会扩展 $@ 本身。

echo './a.out "$@"' >wrapper.a.out

You need to double the $ to get it past make. then use single quotes in the echo command so the shell spawned to run the echo doesn't expand $@ itself.

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