Crates.io | pushenv |
lib.rs | pushenv |
version | 1.1.2 |
source | src |
created_at | 2024-05-08 09:23:37.267289 |
updated_at | 2024-05-27 11:46:34.419758 |
description | A CLI utility that reads a .env file before starting a process. Example usage: pushenv -- echo $SOME_VAR pushenv some.env.file -- echo $SOME_VAR |
homepage | |
repository | https://github.com/JensGM/pushenv |
max_upload_size | |
id | 1233598 |
size | 64,210 |
A CLI utility that reads a .env file before starting a process
You can install pushenv
using Cargo, the Rust package manager, or by
downloading a precompiled binary from the latest release.
cargo install pushenv
This will attempt to read the .env
file in the current directory.
pushenv -- echo $SOME_VAR
You can specify an env file to read from as the first argument.
pushenv some.env.file -- echo $SOME_VAR