(外壳脚本)
我得到这个“ error :2a.sh: 7: [: missing ]
”
而我想回答直到 n th 数字
echo "enter a number :"
read n
s=0
i=0
while [ $i -le $n ]
do
if [ $(expr $i % 2) -eq 0]
then
s=$(expr $i + 1)
fi
i=$(expr $i + 1)
done
echo " ans :"
echo $s
我得到的输出:
enter a number :
10
2a.sh: 7: [: missing ]
ans:
0