2022-02-14 03:22:51 +01:00
|
|
|
---
|
|
|
|
title: help
|
|
|
|
layout: command
|
2022-03-04 13:10:09 +01:00
|
|
|
version: 0.59.1
|
2022-02-14 03:22:51 +01:00
|
|
|
---
|
2019-10-01 17:20:58 +02:00
|
|
|
|
2022-02-14 03:22:51 +01:00
|
|
|
Display help information about commands.
|
2019-10-01 17:20:58 +02:00
|
|
|
|
2022-02-14 03:22:51 +01:00
|
|
|
## Signature
|
2020-06-23 20:21:47 +02:00
|
|
|
|
2022-02-14 03:22:51 +01:00
|
|
|
```> help ...rest --find```
|
2020-06-23 20:21:47 +02:00
|
|
|
|
2022-02-14 03:22:51 +01:00
|
|
|
## Parameters
|
2020-06-23 20:21:47 +02:00
|
|
|
|
2022-02-14 03:22:51 +01:00
|
|
|
- `...rest`: the name of command to get help on
|
|
|
|
- `--find {string}`: string to find in command usage
|
2020-06-23 20:21:47 +02:00
|
|
|
|
2022-02-14 03:22:51 +01:00
|
|
|
## Examples
|
2019-10-01 17:20:58 +02:00
|
|
|
|
2022-02-14 03:22:51 +01:00
|
|
|
show all commands and sub-commands
|
2019-10-01 17:20:58 +02:00
|
|
|
```shell
|
|
|
|
> help commands
|
|
|
|
```
|
|
|
|
|
2022-02-14 03:22:51 +01:00
|
|
|
generate documentation
|
2019-10-01 17:20:58 +02:00
|
|
|
```shell
|
2022-02-14 03:22:51 +01:00
|
|
|
> help generate_docs
|
|
|
|
```
|
2020-06-23 20:21:47 +02:00
|
|
|
|
2022-02-14 03:22:51 +01:00
|
|
|
show help for single command
|
|
|
|
```shell
|
|
|
|
> help match
|
|
|
|
```
|
2020-06-23 20:21:47 +02:00
|
|
|
|
2022-02-14 03:22:51 +01:00
|
|
|
show help for single sub-command
|
|
|
|
```shell
|
|
|
|
> help str lpad
|
|
|
|
```
|
2020-06-23 20:21:47 +02:00
|
|
|
|
2022-02-14 03:22:51 +01:00
|
|
|
search for string in command usage
|
|
|
|
```shell
|
|
|
|
> help --find char
|
2020-06-23 20:21:47 +02:00
|
|
|
```
|