ksh 有条件
我忽略了一些简单的事情。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
[
(在我的系统上位于/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 orbuiltin
which expects an expression just liketest(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.