Chrome OS bash脚本if语句错误

时间:2014-07-21 16:12:36

标签: bash if-statement operator-keyword google-chrome-os crosh

我在开发模式下运行Chrome操作系统,我正在创建一个bash文件。代码如下:

echo -n "Username: "
read username: "
if [ $username == "mycroft" ]; then
    echo "Correct!"
fi

我的问题是,当我输入crosh /bin/sh ./login.sh中的代码后,我输入 在mycroft中,我收到此错误:

[: 4: mycroft: unexpected operator

我做错了什么?

1 个答案:

答案 0 :(得分:0)

您的问题出在第二行

echo -n "Username: "
read username
if [ $username = "mycroft" ]; then
  echo "Correct!"
fi