mirror of
https://github.com/nushell/nushell.git
synced 2024-11-29 11:54:02 +01:00
22 lines
403 B
Markdown
22 lines
403 B
Markdown
|
# str starts-with
|
||
|
checks if string starts with pattern
|
||
|
|
||
|
## Usage
|
||
|
```shell
|
||
|
> str starts-with <pattern> ...args {flags}
|
||
|
```
|
||
|
|
||
|
## Parameters
|
||
|
* `<pattern>` the pattern to match
|
||
|
* ...args: optionally matches prefix of text by column paths
|
||
|
|
||
|
## Flags
|
||
|
* -h, --help: Display this help message
|
||
|
|
||
|
## Examples
|
||
|
Checks if string starts with 'my' pattern
|
||
|
```shell
|
||
|
> echo 'my_library.rb' | str starts-with 'my'
|
||
|
```
|
||
|
|