mirror of
https://github.com/nushell/nushell.git
synced 2024-12-03 05:44:09 +01:00
21 lines
336 B
Markdown
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
|
||
|
```
|
||
|
|