1
| envsubst [option] [shell-format]
|
详见:https://www.gnu.org/software/gettext/manual/html_node/envsubst-Invocation.html
示例
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| $ env a=1 b=2 c=3 ... $ cat a.template a=$a b=$b c=$c $ envsubst < a.template a=1 b=2 c=3 $ envsubst '$$a $$b' < a.template a=1 b=2 c=$c
|