mirror of
https://github.com/nushell/nushell.git
synced 2024-11-29 11:54:02 +01:00
c0a1d18e3d
* feat: update #4455, regenerate commands' docs * chore: update make_docs script
24 lines
378 B
Markdown
24 lines
378 B
Markdown
---
|
|
title: let-env
|
|
layout: command
|
|
version: 0.59.0
|
|
---
|
|
|
|
Create an environment variable and give it a value.
|
|
|
|
## Signature
|
|
|
|
```> let-env (var_name) (initial_value)```
|
|
|
|
## Parameters
|
|
|
|
- `var_name`: variable name
|
|
- `initial_value`: equals sign followed by value
|
|
|
|
## Examples
|
|
|
|
Create an environment variable and display it
|
|
```shell
|
|
> let-env MY_ENV_VAR = 1; $env.MY_ENV_VAR
|
|
```
|