如何刷新 diff 的输出

发布于 2025-01-06 16:33:23 字数 236 浏览 0 评论 0原文

我有这样的脚本,

diff abc def

if [ "$?" -eq "0" ]; then          

    make modules_install

enif

How i can避免 diff 的输出

如果我执行 diff abc def 2 >/dev/null 然后仍然输出显示,

。有什么想法吗?

I have script something like this

diff abc def

if [ "$?" -eq "0" ]; then          

    make modules_install

enif

How i can avoid ouput of diff

if I do diff abc def 2 >/dev/null then still ouput display.

Any idea ?

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

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

发布评论

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

评论(1

若有似无的小暗淡 2025-01-13 16:33:23

您必须重定向 stdout 和 stderr。您可以使用以下命令:

diff abc def > /dev/null 2>&1 && make modules_install

如果您需要在文件相同时执行多于一件事,则 if 语句会更好:

if diff abc def > /dev/null 2>&1; then
  make modules_install
fi

注意:当命令的退出代码为 0 时,对于以下测试中的测试来说,它被视为 true壳。

You must redirect stdout and stderr. You can use the following:

diff abc def > /dev/null 2>&1 && make modules_install

If you need to do more than one thing when the files are the same, then the if statement would be better:

if diff abc def > /dev/null 2>&1; then
  make modules_install
fi

NOTE: When the exit code of the command is 0 it is seen as true for tests in the shell.

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