这是我的脚本:
echo "Name"
read name
if [ "$name" == "abcd" ]; then
echo "Password"
read password
if [ "$password == "pwd" ]; then
echo "Hello"
else
echo "Wrong password"
fi
else
echo "wrong username"
fi
这是我运行它时得到的输出:
嘘你好.sh 姓名 A B C D hello.sh:第 14 行:在寻找匹配的“”时出现意外的 EOF hello.sh:第 16 行:语法错误:文件意外结束
知道这里有什么问题吗?这可能是一个非常愚蠢的,但我浪费了将近一个小时。