mirror of
https://github.com/nushell/nushell.git
synced 2024-11-27 02:44:01 +01:00
bff81f24aa
* Autogenerate missing docs * Update ansi.md * Rename question mark command docs * Delete empty?.md
21 lines
356 B
Markdown
21 lines
356 B
Markdown
# config set_into
|
|
Sets a value in the config
|
|
|
|
## Usage
|
|
```shell
|
|
> config set_into <set_into> {flags}
|
|
```
|
|
|
|
## Parameters
|
|
* `<set_into>` sets a variable from values in the pipeline
|
|
|
|
## Flags
|
|
* -h, --help: Display this help message
|
|
|
|
## Examples
|
|
Store the contents of the pipeline as a path
|
|
```shell
|
|
> echo ['/usr/bin' '/bin'] | config set_into path
|
|
```
|
|
|