mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
23 lines
535 B
Plaintext
23 lines
535 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# apropos
|
|
|
|
> Search the manual pages for names and descriptions.
|
|
> See also: `man`.
|
|
> More information: <https://manned.org/apropos>.
|
|
|
|
- Search for a keyword using a `regex`:
|
|
|
|
`apropos {{regex}}`
|
|
|
|
- Search without restricting the output to the terminal width (long output):
|
|
|
|
`apropos {{[-l|--long]}} {{regex}}`
|
|
|
|
- Search for pages that match all the `regex` given:
|
|
|
|
`apropos {{regex_1}} {{[-a|--and]}} {{regex_2}} {{[-a|--and]}} {{regex_3}}`
|