mirror of https://github.com/CrimsonTome/tldr.git
21 lines
278 B
Markdown
21 lines
278 B
Markdown
|
# more
|
||
|
|
||
|
> Opens a file for reading.
|
||
|
> Allows movement and search in forward direction only.
|
||
|
> Doesn't read the entire file (suitable for logs)
|
||
|
|
||
|
- open a file
|
||
|
|
||
|
`more {{source_file}}`
|
||
|
|
||
|
- page down
|
||
|
|
||
|
`d (next)`
|
||
|
|
||
|
- search for a string
|
||
|
|
||
|
`/{{something}} then n (next)`
|
||
|
|
||
|
- exit
|
||
|
|
||
|
`q`
|