1
0
mirror of https://github.com/nushell/nushell.git synced 2025-05-30 06:39:33 +02:00
nushell/docs/commands/str-pascal-case.md
JT bff81f24aa
Autogenerate missing docs ()
* Autogenerate missing docs

* Update ansi.md

* Rename question mark command docs

* Delete empty?.md
2021-05-30 12:57:04 +12:00

21 lines
336 B
Markdown

# str pascal-case
converts a string to PascalCase
## Usage
```shell
> str pascal-case ...args {flags}
```
## Parameters
* ...args: optionally convert text to PascalCase by column paths
## Flags
* -h, --help: Display this help message
## Examples
convert a string to PascalCase
```shell
> echo 'nu-shell' | str pascal-case
```