考虑以下 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 。