文件名称:templatectl:简单的模板CLI
文件大小:4KB
文件格式:ZIP
更新时间:2024-05-15 00:08:06
Go
templatectl 简单的模板CLI 安装 GO111MODULE=on go get github.com/fatih/templatectl/cmd/templatectl@latest 用法 # By default templatectl prints to stdout echo ' This is {{ env "ENV_FOO" }} ' > input.tmpl export ENV_FOO= " foo " $ templatectl --input input.tmpl This is foo # Or output to a file $ templatectl --input input.tmpl --output templated.txt $ cat templated.txt This is foo
【文件预览】:
templatectl-master
----go.mod(45B)
----internal()
--------template()
----LICENSE(1KB)
----README.md(421B)
----.gitignore(28B)
----cmd()
--------templatectl()