k8s的很多yaml的配置文件中,很多地方执行bash命令时 要加上 -c 。
bash手册中对其解释
-c string If the -c option is present, then commands are read from string. If there are arguments after the string, they are assigned to the positional parameters, starting with $0.
/bin/bash 后面默认执行的时脚本文件 。
加上 -c 之后会将字符串读入作为执行的命令。
标签:bin,string,配置文件,命令,bash,执行,作用 From: https://www.cnblogs.com/zed99/p/17380211.html