执行shell报Syntax error: Bad for loop variable

执行shell报Syntax error: Bad for loop variable

    • 解决方法:
      • 一、执行脚本的时候指定
      • 二、重新配置软件包
      • 三、修改脚本

今天写shell的时候,发现脚本报错:Syntax error: Bad for loop variable,既然是语法错误,于是重新查看了脚本,发现并没有什么问题。于是拿这条语法格式跑了一下,发现是可以执行的。

root@node:/home# sh checklist.sh
checklist.sh: 13: Syntax error: Bad for loop variable
root@node:/home# for ((i=1;i<=5;i++));
> do echo $i;
> done
1
2
3
4
5

原因是从 ubuntu 6.10 开始,ubuntu 就将先前默认的bash shell 更换成了dash shell;其表现为 /bin/sh 链接倒了/bin/dash而不是传统的/bin/bash。所以在使用sh执行的时候实际使用的是dash,而dash不支持这种C语言格式的写法

root@node:/home# cat /etc/os-release
NAME="Ubuntu"
VERSION="20.04.6 LTS (Focal Fossa)"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 20.04.6 LTS"
VERSION_ID="20.04"
HOME_URL="https://www.ubuntu.com/"
SUPPORT_URL="https://help.ubuntu.com/"
BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/"
PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy"
VERSION_CODENAME=focal
UBUNTU_CODENAME=focal
root@node:/home# ll /bin/sh
lrwxrwxrwx 1 root root 4 Aug  5 10:55 /bin/sh -> dash*

解决方法:

一、执行脚本的时候指定

root@node:/home# /bin/bash test
1
2
3
4
5

二、重新配置软件包

图中选择

root@node:/home# ll /bin/sh
lrwxrwxrwx 1 root root 4 Aug  5 10:55 /bin/sh -> dash*
root@node:/home# sudo dpkg-reconfigure dash

执行shell报Syntax error: Bad for loop variable_第1张图片

Removing 'diversion of /bin/sh to /bin/sh.distrib by dash'
Adding 'diversion of /bin/sh to /bin/sh.distrib by bash'
Removing 'diversion of /usr/share/man/man1/sh.1.gz to /usr/share/man/man1/sh.distrib.1.gz by dash'
Adding 'diversion of /usr/share/man/man1/sh.1.gz to /usr/share/man/man1/sh.distrib.1.gz by bash'
root@node:/home# ll /bin/sh
lrwxrwxrwx 1 root root 4 Aug  5 11:04 /bin/sh -> bash*

三、修改脚本

以上两种方法都具有一定的局限性,在一些场景上可能不是最佳选择,所以我们可以通过修改脚本来增强脚本的适用性。

for i in `seq $num`

或者使用while来替换。

i=1
while [ $i -le 5 ]
do
  echo $i
  let i++
done

你可能感兴趣的:(linux,运维)