0

考虑以下 shell 脚本,其中POD设置为 K8 pod 的名称。

kubectl exec -it $POD -c messenger -- bash -c "echo '$@'"

当我使用一个参数运行此脚本时,它工作正常。

hq6:bot hqin$ ./Test.sh  x
x

当我用两个参数运行它时,它会爆炸。

hq6:bot hqin$ ./Test.sh  x y
y': -c: line 0: unexpected EOF while looking for matching `''
y': -c: line 1: syntax error: unexpected end of file

我怀疑参数的传递方式有问题。

我该如何解决这个问题,以便我的 shell 从字面上扩展参数,然后作为文字传递给bash运行中kubectl exec

请注意,删除单引号会导致x仅输出。另请注意,我需要,bash -c所以我最终可以传入文件重定向:https ://stackoverflow.com/a/49189635/391161 。

4

2 回答 2

2

我设法通过以下解决方案解决了这个问题:

kubectl exec -it $POD -c messenger -- bash -c "echo $*"

这似乎具有我可以进行内部重定向的额外好处。

./Test.sh x y '> /tmp/X'
于 2020-09-23T03:05:06.737 回答
0

你会想要这样的东西:

kubectl exec POD -c CONTAINER -- sh -c 'echo "$@"' -- "$@"

使用这种语法,我们在容器内运行的命令是echo "$@". 然后我们获取 的本地值"$@"并将其作为参数传递给远程 shell,从而$@在远程 shell 中进行设置。

在我的本地系统上:

bash-5.0$ ./Test.sh hello
hello
bash-5.0$ ./Test.sh hello world
hello world
于 2020-09-23T03:02:22.787 回答