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
.
```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 ```
-f <(...)
-
)~~ (reading from strings rather than files doesn't seem supported for now)--no-default
is the correct approach