将BASH变量与字符串进行比较

时间:2017-01-07 20:25:22

标签: string bash if-statement compare

我是BASH脚本的新手,我正在尝试编写一个程序,将用户输入的命令与选项列表进行比较。到目前为止,这是我的计划:

echo "enter command"
read command
if ["$command" = "quit"]
then
    exit
fi

当我运行它时,我收到以下错误:

./script.sh: line 3: [quit: command not found

提前致谢:)

0 个答案:

没有答案