我需要将变量与字符串进行比较(难易程度)
#!/bin/bash
a=22
if ["$a" == "23"]
then
echo yes yes
fi
我明白了
./x: line 5: [22: command not found
我试图删除引号,或使用[[...]]
。但是无论我做什么,我都会遇到command not found
错误。有什么建议我做错了吗?
答案 0 :(得分:1)
[ "$a" == "22" ]
<---您需要在空格后面输入一个空格