1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 21:02:08 +02:00
tldr/pages/linux/more.md
Vitor Henrique 2624ea6a30
more: split util-linux and POSIX implementations (#12171)
* more: add page

---------

Co-authored-by: Juri Dispan <juri.dispan@posteo.net>
2024-02-13 11:01:15 +05:30

29 lines
428 B
Markdown

# 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}}`
- Exit:
`q`
- Display help about interactive commands:
`h`