nushell/docs/commands/str-capitalize.md

21 lines
296 B
Markdown
Raw Normal View History

# str capitalize
capitalizes text
## Usage
```shell
> str capitalize ...args {flags}
```
## Parameters
* ...args: optionally capitalize text by column paths
## Flags
* -h, --help: Display this help message
## Examples
Capitalize contents
```shell
> echo 'good day' | str capitalize
```