[root@VM-0-6-centos sh_scripts]# bash val.sh
username: hello world!
val.sh: line 5: [hello: command not found
fail
在我所遇到的问题里,是因为if [$uname -eq 0]
中的条件左右没有空格。
将if语句的条件格式修改一下就可以正常运行了。
#......
if [ $uname -eq 0 ];then
echo "yes"
else
echo "fail"
fi