mirror of
https://github.com/nushell/nushell
synced 2025-01-03 16:58:58 +00:00
20 lines
336 B
Markdown
20 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
|
|
```
|
|
|