2024-02-04 16:06:50 +00:00
|
|
|
# look
|
|
|
|
|
|
|
|
> Display lines beginning with a prefix in a file.
|
2024-02-05 07:04:49 +00:00
|
|
|
> Note: the lines in the file must be sorted.
|
2024-02-04 16:06:50 +00: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:
|
|
|
|
|
2024-06-11 22:27:15 +01:00
|
|
|
`look {{-f|--ignore-case}} {{-d|--alphanum}} {{prefix}} {{path/to/file}}`
|
2024-02-04 16:06:50 +00:00
|
|
|
|
2024-06-11 22:27:15 +01:00
|
|
|
- Specify a string termination character (space by default):
|
2024-02-04 16:06:50 +00:00
|
|
|
|
2024-06-11 22:27:15 +01:00
|
|
|
`look {{-t|--terminate}} {{,}}`
|
2024-02-04 16:06:50 +00: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):
|
|
|
|
|
2024-06-11 22:27:15 +01:00
|
|
|
`look {{-a|--alternative}} {{prefix}}`
|