forked from extern/nushell
21 lines
266 B
Markdown
21 lines
266 B
Markdown
|
# str upcase
|
||
|
upcases text
|
||
|
|
||
|
## Usage
|
||
|
```shell
|
||
|
> str upcase ...args {flags}
|
||
|
```
|
||
|
|
||
|
## Parameters
|
||
|
* ...args: optionally upcase text by column paths
|
||
|
|
||
|
## Flags
|
||
|
* -h, --help: Display this help message
|
||
|
|
||
|
## Examples
|
||
|
Upcase contents
|
||
|
```shell
|
||
|
> echo 'nu' | str upcase
|
||
|
```
|
||
|
|