标签: 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
提前致谢:)