mirror of
https://github.com/nushell/nushell.git
synced 2024-12-01 21:03:58 +01:00
21 lines
332 B
Markdown
21 lines
332 B
Markdown
|
# str snake-case
|
||
|
converts a string to snake_case
|
||
|
|
||
|
## Usage
|
||
|
```shell
|
||
|
> str snake-case ...args {flags}
|
||
|
```
|
||
|
|
||
|
## Parameters
|
||
|
* ...args: optionally convert text to snake_case by column paths
|
||
|
|
||
|
## Flags
|
||
|
* -h, --help: Display this help message
|
||
|
|
||
|
## Examples
|
||
|
convert a string to snake_case
|
||
|
```shell
|
||
|
> echo 'NuShell' | str snake-case
|
||
|
```
|
||
|
|