0
for (( i=0; i<=5; i++ ))
do
        echo "$i Echoed"
done

这是用 vi 编辑器在“bubble.sh”中写的,它给了我这个错误

bubble.sh:1:bubble.sh:语法错误:循环变量错误

我似乎不明白为什么会这样..请帮忙

4

1 回答 1

1

for这种循环风格是一种bash扩展,在 POSIX shell 中不支持。如果您使用sh不是指向bash.

于 2013-09-25T16:16:10.077 回答