mirror of
https://github.com/nushell/nushell.git
synced 2024-11-26 10:23:52 +01:00
21 lines
278 B
Markdown
21 lines
278 B
Markdown
|
# str downcase
|
||
|
downcases text
|
||
|
|
||
|
## Usage
|
||
|
```shell
|
||
|
> str downcase ...args {flags}
|
||
|
```
|
||
|
|
||
|
## Parameters
|
||
|
* ...args: optionally downcase text by column paths
|
||
|
|
||
|
## Flags
|
||
|
* -h, --help: Display this help message
|
||
|
|
||
|
## Examples
|
||
|
Downcase contents
|
||
|
```shell
|
||
|
> echo 'NU' | str downcase
|
||
|
```
|
||
|
|