1
0
mirror of https://github.com/nushell/nushell.git synced 2025-03-21 19:17:48 +01:00
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
```