mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
26 lines
579 B
Plaintext
26 lines
579 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# errno
|
|
|
|
> Look up errno names and descriptions.
|
|
> More information: <https://joeyh.name/code/moreutils/>.
|
|
|
|
- Lookup errno description by name or code:
|
|
|
|
`errno {{name|code}}`
|
|
|
|
- List all errno names, codes, and descriptions:
|
|
|
|
`errno {{[-l|--list]}}`
|
|
|
|
- Search for code whose description contains all of the given text:
|
|
|
|
`errno {{[-s|--search]}} {{text}}`
|
|
|
|
- Search for code whose description contains all of the given text (all locales):
|
|
|
|
`errno {{[-S|--search-all-locales]}} {{text}}`
|