dotenv-exec

Crates.io GitHub Workflow Status

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.

Installation

Examples

```bash $ cat <1=1 VAR2=2 EOT

$ cat <1=0 VAR3=3 EOT

Load .env by default

$ dotenv-exec -- env | grep VAR_ VAR1=1 VAR2=2

Disable this behaviour with --no-default

$ dotenv-exec --no-default -- env | grep VAR_

dotenv-rs does not override already set values (see VAR_1), so the order in

which files are specified is important.

$ 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

If you generate env file on the fly (e.g. decrypting them), you should use

IO redirection

dotenv-exec --no-default -f <(cat .env-2) -- env | grep VAR_ VAR1=0 VAR3=3 ```

Notes