Bash脚本 - 意外令牌附近的语法错误`然后'

时间:2015-03-16 03:43:57

标签: bash shell

我有这个简单的bash脚本,它会在以下消息中失败:

./servo.sh: line 7: syntax error near unexpected token then'

./servo.sh: line 7: if[ "$level" -eq 1 ]; then'

我的bash脚本:

#!/bin/bash
level=1

while :
do
    if[ $level -eq 1 ]; then
            echo "hello"
    else
            echo "else"
    fi
done

我做错了什么?

1 个答案:

答案 0 :(得分:1)

if[

之间添加空格