envx
Environment variable management tool
TLDR
SYNOPSIS
envx [command] [options] [arguments]
DESCRIPTION
envx is an environment variable management tool that provides utilities for loading, exporting, and manipulating environment configurations. It supports .env files, variable expansion, and temporary environment modifications.
The tool is useful for managing environment configurations across different environments (development, staging, production) and ensuring required variables are present before running applications.
PARAMETERS
load [FILE]
Load environment variables from fileexport [FILE]
Export current environment to filerun [options] -- COMMAND
Run command with modified environmentcheck VARIABLES
Verify required variables are set-e, --env KEY=VALUE
Set environment variable-f, --file FILE
Specify environment file--expand
Expand variable references in values--override
Override existing variables-v, --version
Display version and exit-h, --help
Display help and exit
CAVEATS
Variable expansion may have security implications with untrusted input. .env file format may vary between tools. System environment variables are protected from modification in some cases.
HISTORY
envx was created to provide a consistent way to manage environment variables across projects and environments.

