1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/linux/more.md

30 lines
443 B
Markdown
Raw Normal View History

# 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>`