tldr/pages/linux/whatis.md

25 lines
534 B
Markdown
Raw Normal View History

2016-09-19 18:36:07 +01:00
# whatis
> Display one-line descriptions from manual pages.
> More information: <https://manned.org/whatis>.
2016-09-19 18:36:07 +01:00
- Display a description from a man page:
`whatis {{command}}`
- Don't cut the description off at the end of the line:
`whatis --long {{command}}`
2017-05-04 08:38:06 +01:00
- Display descriptions for all commands matching a glob:
`whatis --wildcard {{net*}}`
2016-09-19 18:36:07 +01:00
- Search man page descriptions with a regular expression:
2017-05-04 08:38:06 +01:00
`whatis --regex '{{wish[0-9]\.[0-9]}}'`
- Display descriptions in a specific language:
`whatis --locale={{en}} {{command}}`