2 个稳定版本
1.1.0 | 2023年4月23日 |
---|---|
1.0.0 | 2023年4月17日 |
#100 in #设置
每月 24 次下载
18KB
470 行
envctl
🚀 全面控制您的 .env 环境变量
用法
$ envctl --help
Environment Variable Control
Usage: envctl <COMMAND>
Commands:
update Read settings from INPUT and update OUTPUT
help Print this message or the help of the given subcommand(s)
Options:
-h, --help Print help
-V, --version Print version
$ ls
.env.example
$ cat .env.example
A=1
B=2
C=
$ envctl update
A (1):
B (2): 3
C: 4
$ cat .env
A=1
B=3
C=4
查看 envctl update --help
获取更详细的说明。
安装
$ cargo install envctl
或开发时,
$ gh repo fork yu-ichiro/envctl --clone --remote
$ cd envctl
$ cargo install --path .
请确保 $HOME/.cargo/bin
已包含在您的路径中。
依赖关系
~4–11MB
~109K SLoC