shell中的if语句逻辑错误
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell中的if语句逻辑错误相关的知识,希望对你有一定的参考价值。
一段shell脚本:
test=1
if [ test -eq 1 ]; then
echo "test=1"
elif [ test -eq 0 ]; then
echo "test=0"
else
echo "other"
fi
为什么这里打印的是“test=0”,不是“test=1”呢?哪里书写错误?空格?谢谢!
是应该加上$符号,但为什么使用
if [ test -eq 1 ]; then
echo "test=1"
elif [ test -eq 0 ]; then
echo "test=0"
...
会进入"test=0"这个逻辑呢?谢谢!
将test换成其它字符,例如count,也提示这个错误的?
但是我这里确实能够使用count执行,进入的是test=0的逻辑。
test=1
if [ $test -eq 1 ]; then
echo "test=1"
elif [ $test -eq 0 ]; then
echo "test=0"
else
echo "other"
fi
——————————————————————————————
补充:test 是一个用于测试表达式的shell内建命令,你定义的变量名正好与之相同。
你的这个脚本在我这里是会报语法错误的:[: test: integer expression expected
可能跟你使用的是什么shell也有关系。
换成count,我这里也提示语法错误,[: count: integer expression expected
因为 -eq 用于整数的比较,所以脚本期待这个操作符两边都是整数或整型表达式。
但我这边确实报错,就是不让执行。请百度hi我,方便交流。 参考技术A if [ "$test" -eq 1 ]; then
echo "test=1"
elif [ "$test" -eq 0 ]; then
echo "test=0"
else
echo "other"
fi
试下 参考技术B 我这边AIX环境下测试通过....结果就是test=1...........
shell脚本中的逻辑判断文件目录属性判断if特殊用法case判断
一:shell脚本中的逻辑判断
格式1:if 条件 ; then 语句; fi
格式2:if 条件; then 语句; else 语句; fi
格式3:if …; then … ;elif …; then …; else …; fi
逻辑判断表达式:if [ $a -gt $b ]; if [ $a -lt 5 ]; if [ $b -eq 10 ]等 -gt (>); -lt(<); -ge(>=); -le(<=);-eq(==); -ne(!=) 注意到处都是空格
可以使用 && || 结合多个条件
if [ $a -gt 5 ] && [ $a -lt 10 ]; then
if [ $b -gt 5 ] || [ $b -lt 3 ]; then
二:文件目录属性判断
[ -f file ]判断是否是普通文件,且存在
[ -d file ] 判断是否是目录,且存在
[ -e file ] 判断文件或目录是否存在
[ -r file ] 判断文件是否可读
[ -w file ] 判断文件是否可写
[ -x file ] 判断文件是否可执行
三:if特殊用法
if [ -z "$a" ]??这个表示当变量a的值为空时会怎么样
if [ -n "$a" ] 表示当变量a的值不为空
if grep -q ‘123‘ 1.txt; then??表示如果1.txt中含有‘123‘的行时会怎么样
if [ ! -e file ]; then 表示文件不存在时会怎么样
if (($a<1)); then …等同于 if [ $a -lt 1 ]; then…
[ ] 中不能使用<,>,==,!=,>=,<=这样的符号
四:case判断
格式 case??变量名 in?? ?? ?? ?? ?? ?? ?? ?value1)? ?? ?? ?? ?? ?? ?? ?? ???command? ?? ?? ?? ?? ?? ?? ?? ???;;? ?? ?? ?? ?? ?? ?? ?value2)? ?? ?? ?? ?? ?? ?? ?? ???command? ?? ?? ?? ?? ?? ?? ?? ???;;? ?? ?? ?? ?? ?? ?? ? *)? ?? ?? ?? ?? ?? ?? ?? ?commond? ?? ?? ?? ?? ?? ?? ?? ?? ? ;;? ?? ?? ?? ?? ?? ?? ? esac
在case程序中,可以在条件中使用|,表示或的意思, 比如? ??2|3)?? ? command? ? ;;
案例一:
#!/bin/bash
read -p "Please input a number: " n
if [ -z "$n" ]
then
echo "Please input a number."
exit 1
fi
n1=`echo $n|sed ‘s/[0-9]//g‘`
if [ -n "$n1" ]
then
echo "Please input a number."
exit 1
fi
if [ $n -lt 60 ] && [ $n -ge 0 ]
then
tag=1
elif [ $n -ge 60 ] && [ $n -lt 80 ]
then
tag=2
elif [ $n -ge 80 ] && [ $n -lt 90 ]
then
tag=3
elif [ $n -ge 90 ] && [ $n -le 100 ]
then
tag=4
else
tag=0
fi
案例二:
case $tag in
1)
echo "not ok"
;;
2)
echo "ok"
;;
3)
echo "ook"
;;
4)
echo "oook"
;;
*)
echo "The number range is 0-100."
;;
esac
以上是关于shell中的if语句逻辑错误的主要内容,如果未能解决你的问题,请参考以下文章
shell中的逻辑判断,if 判断文件目录属性,if判断的一些特殊用法
shell脚本中的逻辑判断文件目录属性判断if特殊用法case判断
20.5shell脚本中的逻辑判断20.6文件目录属性判断20.7-9if特殊用法 case判断
Shell脚本中的逻辑判断文件目录属性判断if的特殊用法case判断