Linux Shell脚本中for循环的语法
我在实现for循环时遇到问题。执行脚本时出现此错误
test1.sh:2:语法错误:循环变量错误
我不明白这个错误。
这是我的剧本
#!/bin/bashfor (( c=1; c<=5; c++ ))
do
echo "Welcome $c times..."
done
谁能告诉我ubuntu中sh(在ubuntu中它链接到破折号外壳)shell中for循环的语法?
回答:
您可能使用sh
而不是bash
。尝试bash test1.sh
,或者./test1.sh
如果它是可执行的,则不行sh test1.sh
。
以上是 Linux Shell脚本中for循环的语法 的全部内容, 来源链接: utcz.com/qa/427668.html