我在开发模式下运行Chrome操作系统,我正在创建一个bash文件。代码如下:
echo -n "Username: "
read username: "
if [ $username == "mycroft" ]; then
echo "Correct!"
fi
我的问题是,当我输入crosh
/bin/sh ./login.sh
中的代码后,我输入
在mycroft
中,我收到此错误:
[: 4: mycroft: unexpected operator
我做错了什么?
答案 0 :(得分:0)
您的问题出在第二行
echo -n "Username: "
read username
if [ $username = "mycroft" ]; then
echo "Correct!"
fi