Simple Rust wrapper around execpv
(through std::os::unix::process::CommandExt
) and dotenv-rs for unix systems.
This will execute a program populating environment variables from .env
files. By default it will look up a file named .env
in the current directory or any of its parents (you can disable this with --no-default
) and load any env file specified with -f / --file
in that order.
All formatting, substitution and ordering rules are the same as dotenv-rs
.
cargo install dotenv-exec
```bash
$ cat <
$ cat <
$ dotenv-exec -- env | grep VAR_ VAR1=1 VAR2=2
$ dotenv-exec --no-default -- env | grep VAR_
$ dotenv-exec -f .env-2 -- env | grep VAR_ VAR1=1 VAR2=2 VAR_3=3
$ dotenv-exec --no-default -f .env-2 -f .env -- env | grep VAR_ VAR1=0 VAR3=3 VAR_2=2
dotenv-exec --no-default -f <(cat .env-2) -- env | grep VAR_ VAR1=0 VAR3=3 ```
--no-default
and --ignore-missing
are the right defaults and I see a risk that the no override / reverse priority order behaviour could be counter intuitive.-f -
convention. IO redirection should work as an alternative when using dynamically generated env files.