执行shell脚本报错Syntax error: “(“ unexpected

Posted styshoo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了执行shell脚本报错Syntax error: “(“ unexpected相关的知识,希望对你有一定的参考价值。

背景

更新容器镜像后,通过容器执行shell脚本报错。命令如下,其中portal-container 为容器名。

# docker exec -i portal-container /bin/bash -c 'sh /data/kubespray/tools/deploy/deploy_k8s.sh'
Syntax error: "(" unexpected

原因

更换的新容器镜像,使用了和原来不同的基础镜像,原来的sh命令最终是指向bash的。而现在的sh指向了dash,而bash和dash的语法是不完全兼容的。

# docker exec -it portal-container bash
root@localhost:~# which sh
/bin/sh
root@localhost:~# ls -l /bin/sh
lrwxrwxrwx 1 root root 4 Jan 24  2017 /bin/sh -> dash

解决方法

执行脚本时,将sh显示替换为bash执行即可。

# docker exec -i portal-container /bin/bash -c 'bash /data/kubespray/tools/deploy/deploy_k8s.sh'

以上是关于执行shell脚本报错Syntax error: “(“ unexpected的主要内容,如果未能解决你的问题,请参考以下文章

执行shell脚本报错Syntax error: “(“ unexpected

执行shell脚本报错:syntax error near unexpected token `或syntax error: unexpected end of file

linux的shell脚本报错“syntax error near unexpected token `”的解决

shell编程报错:“syntax error near unexpected token `”

shell 报错:syntax error: unexpected end of file

编写简单的shell脚本 - for循环 - 解决报错 Syntax error: Bad for loop variable