2024-02-04 13:06:50 -03:00
|
|
|
# look
|
|
|
|
|
|
|
|
> Display lines beginning with a prefix in a 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://manned.org/look>.
|
|
|
|
|
|
|
|
- Search for lines beginning with a specific prefix in a specific file:
|
|
|
|
|
|
|
|
`look {{prefix}} {{path/to/file}}`
|
|
|
|
|
|
|
|
- Case-insensitively search only on blank and alphanumeric characters:
|
|
|
|
|
2025-03-09 01:35:31 +02:00
|
|
|
`look {{[-f|--ignore-case]}} {{[-d|--alphanum]}} {{prefix}} {{path/to/file}}`
|
2024-02-04 13:06:50 -03:00
|
|
|
|
2024-06-11 23:27:15 +02:00
|
|
|
- Specify a string termination character (space by default):
|
2024-02-04 13:06:50 -03:00
|
|
|
|
2025-03-09 01:35:31 +02:00
|
|
|
`look {{[-t|--terminate]}} {{,}}`
|
2024-02-04 13:06:50 -03:00
|
|
|
|
|
|
|
- Search in `/usr/share/dict/words` (`--ignore-case` and `--alphanum` are assumed):
|
|
|
|
|
|
|
|
`look {{prefix}}`
|
|
|
|
|
|
|
|
- Search in `/usr/share/dict/web2` (`--ignore-case` and `--alphanum` are assumed):
|
|
|
|
|
2025-03-09 01:35:31 +02:00
|
|
|
`look {{[-a|--alternative]}} {{prefix}}`
|