mirror of
https://github.com/nushell/nushell.git
synced 2025-08-09 23:07:46 +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-ends-with.md
Normal file
21
docs/commands/str-ends-with.md
Normal file
@ -0,0 +1,21 @@
|
||||
# str ends-with
|
||||
checks if string ends with pattern
|
||||
|
||||
## Usage
|
||||
```shell
|
||||
> str ends-with <pattern> ...args {flags}
|
||||
```
|
||||
|
||||
## Parameters
|
||||
* `<pattern>` the pattern to match
|
||||
* ...args: optionally matches suffix of text by column paths
|
||||
|
||||
## Flags
|
||||
* -h, --help: Display this help message
|
||||
|
||||
## Examples
|
||||
Checks if string ends with '.rb' pattern
|
||||
```shell
|
||||
> echo 'my_library.rb' | str ends-with '.rb'
|
||||
```
|
||||
|
Reference in New Issue
Block a user