1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/help2man.md

25 lines
578 B
Markdown
Raw Normal View History

2018-05-10 15:45:31 +01:00
# help2man
> Produce simple man pages from an executable's `--help` and `--version` output.
2019-06-07 11:58:28 +01:00
> More information: <https://www.gnu.org/software/help2man>.
2018-05-10 15:45:31 +01:00
- Generate a man page for an executable:
`help2man {{executable}}`
- Specify the "name" paragraph in the man page:
`help2man {{executable}} {{[-n|--name]}} {{name}}`
2018-05-10 15:45:31 +01:00
- Specify the section for the man page (defaults to 1):
`help2man {{executable}} {{[-s|--section]}} {{section}}`
2018-05-10 15:45:31 +01:00
- Output to a file instead of `stdout`:
2018-05-10 15:45:31 +01:00
`help2man {{executable}} {{[-o|--output]}} {{path/to/file}}`
2018-05-10 15:45:31 +01:00
- Display help:
2018-05-10 15:45:31 +01:00
`help2man --help`