ksh 有条件

发布于 2024-10-08 07:46:27 字数 267 浏览 3 评论 0原文

我忽略了一些简单的事情。

if [ ${FILEDATE} -gt ${MIN} ]; then
    echo $MAX
fi

上面的代码有效,但不是这样:

if [ ${FILEDATE} -gt ${MIN} ||  ${FILEDATE} -lt ${MAX}]; then
    echo $MAX
fi

肯定存在一些语法问题,但我找到的参考文献看起来与我所拥有的相同。

There is something simple I am over looking.

if [ ${FILEDATE} -gt ${MIN} ]; then
    echo $MAX
fi

The above code works, but not this:

if [ ${FILEDATE} -gt ${MIN} ||  ${FILEDATE} -lt ${MAX}]; then
    echo $MAX
fi

There must be some syntax problem, but the references I have found look identical to what I have.

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

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

发布评论

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

评论(1

深居我梦 2024-10-15 07:46:27

[ (在我的系统上位于 /usr/bin/[)实际上是一个程序或 builtin ,它需要一个类似于 test(1) 确实如此。 [ 的特殊之处在于,它必须用结束的 ] 包裹起来。

因此,可以通过在 shell 中使用 &&|| 运算符来调用 [ 并组合不同的表达式:

if [ $ {FILEDATE} -gt ${MIN} ] || [ ${FILEDATE} -lt ${MAX} ];那么 #... 应该可以正常工作。

您还可以考虑将变量扩展放在内部 "" 即使未定义某些变量也能获得良好的行为;)

另请参阅: Unix 测试

[ (on my system it is at /usr/bin/[) is actually a program or builtin which expects an expression just like test(1) does. The peculiarity with [ is, that it has to be wrapped up with a closing ].

So calling [ and combining different expressions is possible by using && and || operators from the shell:

if [ ${FILEDATE} -gt ${MIN} ] || [ ${FILEDATE} -lt ${MAX} ]; then #... Should work just fine.

You might also consider to put the variable expansions inside "" to get nice behavior even if some variable isn't defined ;)

See also: Unix test.

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