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

22 lines
290 B
Markdown
Raw Normal View History

2014-05-12 15:24:05 +03:00
# more
> Opens a file for reading.
> Allows movement and search in forward direction only.
> Doesn't read the entire file (suitable for logs).
2014-05-12 15:24:05 +03:00
- Open a file:
2014-05-12 15:24:05 +03:00
`more {{source_file}}`
- Page down:
2014-05-12 15:24:05 +03:00
`<Space> (next)`
2014-05-12 15:24:05 +03:00
- Search for a string:
2014-05-12 15:24:05 +03:00
`/{{something}} then n (next)`
- Exit:
2014-05-12 15:24:05 +03:00
`q`