11 · The Command Line
Environment Variable
A named value the system holds
A named setting the system and your programs can read — often configuration or secrets like API keys, kept outside the code.
Concrete example
An app reads its OpenAI key from an environment variable instead of having it written in the code.
Why it matters
The standard way to feed secrets and settings to a program without hard-coding them.