这个.txt”当 grep 输出为空时,在 Makefile 中给出错误,而不是在 bash 中给出错误" />

"grep 这个 foo.txt >这个.txt”当 grep 输出为空时,在 Makefile 中给出错误,而不是在 bash 中给出错误

发布于 2024-10-13 18:57:16 字数 365 浏览 0 评论 0原文

Makefile 如下:

THIS.txt : foo.txt  
        grep THIS foo.txt > $@

当 grep 输出为空时(foo.txt 中没有 THIS),make 会给出错误消息,而 bash 不会:

$ make  
make:*** [THIS.txt] Error 1

$ grep THIS foo.txt > THIS.txt  

$ grep THIS foo.txt 2>&1  

怎么回事?当 grep 输出为空时,我应该如何修改 makefile 以避免出现错误消息?

Makefile is as follows :

THIS.txt : foo.txt  
        grep THIS foo.txt > $@

When grep output is empty (no THIS in foo.txt), make gives an error message, bash does not :

$ make  
make:*** [THIS.txt] Error 1

$ grep THIS foo.txt > THIS.txt  

$ grep THIS foo.txt 2>&1  

How come? How should I modify my makefile to avoid an error message when grep output is empty?

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

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

发布评论

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

评论(1

梦归所梦 2024-10-20 18:57:16

grep 在 bash 中不会给出错误,但它确实返回一个非零退出代码:

> grep THIS foo.txt 2>&1
> echo $?
1

如果您想摆脱该非零退出代码,那么make 不会将其标记为错误,您可以这样做:

THIS.txt : foo.txt
     grep THIS foo.txt > $@ || true

|| true 位表示“如果存在非零退出代码,则返回 true 的退出代码(在 bash 中始终为 0)。

grep doesn't give an error in bash, but it does return a non-zero exit code:

> grep THIS foo.txt 2>&1
> echo $?
1

If you want to get rid of that non-zero exit code, so that make won't flag it as an error, you can do this:

THIS.txt : foo.txt
     grep THIS foo.txt > $@ || true

The || true bit says "if there is a nonzero exit code, return the exit code of true instead (which is always 0 in bash).

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