mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-02 15:43:04 +00:00
22 lines
598 B
Plaintext
22 lines
598 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# apropos
|
|
|
|
> Search the manual pages for names and descriptions.
|
|
> More information: <https://manned.org/apropos>.
|
|
|
|
- Search for a keyword using a regular expression:
|
|
|
|
`apropos {{regular_expression}}`
|
|
|
|
- Search without restricting the output to the terminal width ([l]ong output):
|
|
|
|
`apropos {{[-l|--long]}} {{regular_expression}}`
|
|
|
|
- Search for pages that match all the expressions given:
|
|
|
|
`apropos {{regular_expression_1}} {{[-a|--and]}} {{regular_expression_2}} {{[-a|--and]}} {{regular_expression_3}}`
|