mirror of https://github.com/CrimsonTome/tldr.git
33 lines
464 B
Markdown
33 lines
464 B
Markdown
# more
|
|
|
|
> Open a file for interactive reading, allowing scrolling and search.
|
|
> More information: <https://manned.org/more>.
|
|
|
|
- Open a file:
|
|
|
|
`more {{path/to/file}}`
|
|
|
|
- Open a file displaying from a specific line:
|
|
|
|
`more +{{line_number}} {{path/to/file}}`
|
|
|
|
- Go to the next page:
|
|
|
|
`<Space>`
|
|
|
|
- Search for a string (press `n` to go to the next match):
|
|
|
|
`/{{something}}`
|
|
|
|
- Exit:
|
|
|
|
`q`
|
|
|
|
- Display help about interactive commands:
|
|
|
|
`h`
|
|
|
|
- Display help:
|
|
|
|
`more --help`
|