mirror of
https://github.com/nushell/nushell
synced 2025-01-12 13:19:01 +00:00
20 lines
278 B
Markdown
20 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
|
|
```
|
|
|