mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
35 lines
535 B
Plaintext
35 lines
535 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# more
|
|
|
|
> Interactively display a file, allowing scrolling and searching.
|
|
> See also: `less`.
|
|
> More information: <https://manned.org/more>.
|
|
|
|
- Open a file:
|
|
|
|
`more {{path/to/file}}`
|
|
|
|
- Display 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}}<Enter>`
|
|
|
|
- Exit:
|
|
|
|
`<q>`
|
|
|
|
- Display help about interactive commands:
|
|
|
|
`<h>`
|