求助:shell编程中的if语句总得不到要求的结果
[root@70 tmp]# cat test1.sh #!/bin/bash
echo "============================"
read order
if [ "order" == y ]
then
echo "yyyyyyyyyy"
echo "fffffffff"
fi
[root@70 tmp]# ./test1.sh
============================
y
[root@70 tmp]# vi test1.sh
[root@70 tmp]# ./test1.sh
============================
n
这个是为什么呢?