mirror of
https://github.com/nushell/nushell.git
synced 2024-11-30 04:14:17 +01:00
bff81f24aa
* Autogenerate missing docs * Update ansi.md * Rename question mark command docs * Delete empty?.md
17 lines
321 B
Markdown
17 lines
321 B
Markdown
# let-env
|
|
Create an environment variable and give it a value.
|
|
|
|
## Usage
|
|
```shell
|
|
> let-env <name> <equals> <expr> {flags}
|
|
```
|
|
|
|
## Parameters
|
|
* `<name>` the name of the environment variable
|
|
* `<equals>` the equals sign
|
|
* `<expr>` the value for the environment variable
|
|
|
|
## Flags
|
|
* -h, --help: Display this help message
|
|
|