linux shell 报错 Syntax error: Bad for loop variable

戏子无情 提交于 2020-01-27 22:20:14

在linux下写了一个简单的shell,循环10次.

test.sh

#!/bin/bash                        
##                                 
##循环10次                         
##                                 
for ((i=0; i<10; i++));            
                                   
do                                 
                                   
    echo Good Morning ,this is  $i  shell program.                                                                        
                                   
done

执行:sh test.sh 报下面的错误.

Syntax error: Bad for loop variable

在网上搜索了一下.

因为Ubuntu为了加快开机速度,用dash代替了传统的bash,所以我们这样执行就没问题.

bash test.sh

 

那如果我们只想用sh test.sh 这样的方式执行,怎么办呢?

修改一下代码.

for i in `seq 10`                  
do                                 
                                   
    echo Good Morning ,this is  $i  shell program.
                                   
done

这个时候,你再执行 sh test.sh,就不会报错误啦.

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!