当前位置: 技术问答>linux和unix
linux 中用shell编写程序时遇到的一个问题,请高手指点!!!!
来源: 互联网 发布时间:2016-06-07
本文导语: count=$(grep ^my student.txt|wc -l) if [ $count=0 ] then echo "this name is not exists!" exit 0 fi 这段代码就是想查找以my开头的人名是否存在。 但是为何无论count的值为多少,if 块中的代码总会被执行?? | 等于语...
count=$(grep ^my student.txt|wc -l)
if [ $count=0 ]
then
echo "this name is not exists!"
exit 0
fi
这段代码就是想查找以my开头的人名是否存在。
但是为何无论count的值为多少,if 块中的代码总会被执行??
if [ $count=0 ]
then
echo "this name is not exists!"
exit 0
fi
这段代码就是想查找以my开头的人名是否存在。
但是为何无论count的值为多少,if 块中的代码总会被执行??
|
等于语句 貌似是
if [ $count -eq 0 ]
你再 check 一下
if [ $count -eq 0 ]
你再 check 一下
|
也可以用这种方法
if [ $count == 0 ]
if [ $count == 0 ]