# json2env Convert valid JSON to environment variables or an `.env`-line file. ## Usage ```sh JSON to Env Var converter Usage: json2env.exe [OPTIONS] Options: -i, --input Input file, defaults to STDIN if not specified -o, --output Output file, defaults to STDOUT if not specified -s, --separator Separator for nested keys -h, --help Print help -V, --version Print version ``` ## Installation You can either install the tool with `cargo`: ```sh cargo install --path ``` or build the executable with (output in `target/release`): ```sh cargo build --release ```