Autogenerate missing docs (#3514)

* Autogenerate missing docs

* Update ansi.md

* Rename question mark command docs

* Delete empty?.md
This commit is contained in:
JT
2021-05-30 12:57:04 +12:00
committed by GitHub
parent ed515cbc0c
commit bff81f24aa
155 changed files with 3713 additions and 0 deletions

36
docs/commands/with-env.md Normal file
View File

@ -0,0 +1,36 @@
# with-env
Runs a block with an environment variable set.
## Usage
```shell
> with-env <variable> <block> {flags}
```
## Parameters
* `<variable>` the environment variable to temporarily set
* `<block>` the block to run once the variable is set
## Flags
* -h, --help: Display this help message
## Examples
Set the MYENV environment variable
```shell
> with-env [MYENV "my env value"] { echo $nu.env.MYENV }
```
Set by primitive value list
```shell
> with-env [X Y W Z] { echo $nu.env.X $nu.env.W }
```
Set by single row table
```shell
> with-env [[X W]; [Y Z]] { echo $nu.env.X $nu.env.W }
```
Set by row(e.g. `open x.json` or `from json`)
```shell
> echo '{"X":"Y","W":"Z"}'|from json|with-env $it { echo $nu.env.X $nu.env.W }
```