考虑下面的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进行字面扩展,然后作为文本传递给在kubectl exec
中运行的bash
请注意,删除单引号只会导致x
的输出。还要注意,我需要bash -c
,这样我最终可以传入文件重定向:https://stackoverflow.com/a/49189635/391161.
我设法用以下解决方案解决了这个问题:
kubectl exec -it $POD -c messenger -- bash -c "echo $*"
这似乎有额外的好处,我可以做内部重定向。
./Test.sh x y '> /tmp/X'
你会想要这样的东西:
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