linux – 区别;&和;;在bash脚本中

我正在将一个bash脚本从Linux机器盒复制到我的Mac笔记本电脑上,在此过程中,脚本开始抱怨使用;&.

错误

./build.sh: line 122: Syntax error near unexpected token `;’
./build.sh: line 122: ` ;&’

脚本中有一些用法,但简短的用法是:

case ${OPTION} in
    xxx)
        export DEVICES=xxx
         ;;
    yyy)
        export DEVICES=yyy
         ;;
    *)
        echo "${OPTION}: UnkNown device type:  use xxx|yyy"
        exit 1
        ;&
    esac
;;

我已经取代了所有的用法;&与;;而且我认为一切都还可以,但我仍然很好奇我做了什么.案例陈述中分号符号和双分号之间的区别是什么?

解决方法:

来自man bash:

Using ;& in place of ;; causes execution to continue with the list
associated
with the next set of patterns.

从那以后;&在case语句的最后一个模式上发生,它应该在该脚本中没有区别.

相关文章

用的openwrt路由器,家里宽带申请了动态公网ip,为了方便把2...
#!/bin/bashcommand1&command2&wait从Shell脚本并行...
1.先查出MAMP下面集成的PHP版本cd/Applications/MAMP/bin/ph...
1、先输入locale-a,查看一下现在已安装的语言2、若不存在如...
BashPerlTclsyntaxdiff1.进制数表示Languagebinaryoctalhexa...
正常安装了k8s后,使用kubect工具后接的命令不能直接tab补全...