2024-02-04 13:06:50 -03:00
|
|
|
# look
|
|
|
|
|
|
|
|
> Display lines beginning with a prefix in a sorted file.
|
2025-05-04 05:15:17 +03:00
|
|
|
> Note: The lines in the file must be sorted.
|
2024-02-04 13:06:50 -03:00
|
|
|
> See also: `grep`, `sort`.
|
|
|
|
> More information: <https://man.openbsd.org/look>.
|
|
|
|
|
|
|
|
- Search for lines beginning with a specific prefix in a specific file:
|
|
|
|
|
|
|
|
`look {{prefix}} {{path/to/file}}`
|
|
|
|
|
2025-03-17 23:17:57 +02:00
|
|
|
- Case-insensitively search only on alphanumeric characters:
|
2024-02-04 13:06:50 -03:00
|
|
|
|
2025-03-17 23:17:57 +02:00
|
|
|
`look {{[-f|--ignore-case]}} {{[-d|--alphanum]}} {{prefix}} {{path/to/file}}`
|
2024-02-04 13:06:50 -03:00
|
|
|
|
2025-03-17 23:17:57 +02:00
|
|
|
- Specify a string termination character (space by default):
|
2024-02-04 13:06:50 -03:00
|
|
|
|
2025-03-17 23:17:57 +02:00
|
|
|
`look {{[-t|--terminate]}} {{,}}`
|
2024-02-04 13:06:50 -03:00
|
|
|
|
2025-03-17 23:17:57 +02:00
|
|
|
- Search in `/usr/share/dict/words` (`--alphanum` and `--ignore-case` are assumed):
|
2024-02-04 13:06:50 -03:00
|
|
|
|
|
|
|
`look {{prefix}}`
|