mirror of
https://github.com/nushell/nushell.git
synced 2025-08-15 02:02:35 +02:00
Autogenerate missing docs (#3514)
* Autogenerate missing docs * Update ansi.md * Rename question mark command docs * Delete empty?.md
This commit is contained in:
21
docs/commands/str-starts-with.md
Normal file
21
docs/commands/str-starts-with.md
Normal file
@ -0,0 +1,21 @@
|
||||
# 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'
|
||||
```
|
||||
|
Reference in New Issue
Block a user