#!/bin/bash
var=1
if [[ $var -eq 0 ]]
then
echo "No students"
elif [[ $var -eq 1 ]]
then
echo "1 student"
elif [[ $var -eq 2]]
then
echo "2 students"
elif [[ $var -eq 3 ]]
then
echo "3 students"
elif [[ $var -eq 4 ]]
then
echo "4 students"
else
echo "A lot of students"
fi
我写了这个 bash 脚本。但它抛出了这个错误:
Failed test #1. Runtime error:
main.sh: line 11: syntax error in conditional expression
main.sh: line 12: syntax error near `then'
main.sh: line 12: `then'
答案1
问题是elif [[ $var -eq 2]]
,应该是:elif [[ $var -eq 2 ]]
。
间距很重要。
问题是,当它看到一个时,[[
它会寻找关闭]]
,但找不到它,相反,它看到2]]
的是没有任何意义的。
答案2
case
将是减少代码的一个好选择。
case $var in
0) echo "No students" ;;
1|2|3|4) echo "$var students" ;;
*) echo "A lot of students" ;;
esac