为什么 'if [ $# > 是错误的0];然后'?

发布于 2024-10-20 19:16:48 字数 274 浏览 6 评论 0原文

为什么第三个命令仍然产生输出?

$cat sh.sh
#!/bin/sh
echo $#
if [ $# > 0 ] ; then
    base=`basename $1 .c`
    echo $base
fi
$ sh sh.sh a.c
1
a
$ sh sh.sh
0
.c

我使用此文件:/usr/share/doc/opencv-doc/examples/c/build_all.sh 为 opencv 包构建 c 示例,但因类似错误而失败。

why does it still produce output in the third command?

$cat sh.sh
#!/bin/sh
echo $#
if [ $# > 0 ] ; then
    base=`basename $1 .c`
    echo $base
fi
$ sh sh.sh a.c
1
a
$ sh sh.sh
0
.c

I use this file:/usr/share/doc/opencv-doc/examples/c/build_all.sh to build the c examples for opencv packages,but failed with similar errors.

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

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

发布评论

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

评论(3

你不是我要的菜∠ 2024-10-27 19:16:48

您需要使用 -gt 代替 >

如果您使用双括号构造>一个>。

You need to use -gt in place of >.

You can use > if you are using double parenthesis construct.

青衫儰鉨ミ守葔 2024-10-27 19:16:48

您应该在您的条件中使用 -gt(大于),而不是 >。请参阅 man test 了解更多信息。

if [ $# -gt 0 ] ; then
    base=`basename $1 .c`
    echo $base
fi

You should use -gt(Greater than) in your condition, not >. Look at man test for more information.

if [ $# -gt 0 ] ; then
    base=`basename $1 .c`
    echo $base
fi
凯凯我们等你回来 2024-10-27 19:16:48

请记住,[ 命令。确切地说, /usr/bin/[ 。它链接到命令 /usr/bin/test

因此, [ $# > 0test $# > 相同0,即将test $#的输出重定向到0文件。

如果您使用 bash ...现在完全是一个不同的故事了:-)

Remember that [ is a command. /usr/bin/[ , to be exact. It is linked to the command /usr/bin/test

So, [ $# > 0 is identical to test $# > 0, i.e., redirect test $#'s output to the 0 file.

If you're using bash ... now that's a different story altogether :-)

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