linux shell scripts:Syntax error: Bad for loop variable

Posted zhchoutai

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux shell scripts:Syntax error: Bad for loop variable相关的知识,希望对你有一定的参考价值。

执行脚本报错

#!/bin/bash

s=0
for (( i=1; i<=100; i++ ))
do
	s=$(( $s + $i ))
done

echo $s

sh add.sh 报错:

add.sh: 4: Syntax error: Bad for loop variable

代码没有错误,Ubuntu为了加快开机速度,用dash取代bash。

解决的方法:取消dash,使用bash:

sudo dpkg-reconfigure dash

选择No选项









以上是关于linux shell scripts:Syntax error: Bad for loop variable的主要内容,如果未能解决你的问题,请参考以下文章

Linux08--Shell程序设计03 shell script

鸟哥的 Linux 私房菜Shell Scripts篇

鸟哥的 Linux 私房菜Shell Scripts篇

Linux的shell scripts

Linux的shell scripts的shell脚本练习

鸟哥的Linux私房菜-----12学习使用Shell scripts