blob: d8267345f965c25a0e25c065ae91a7c954d89eba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
## Name
more - page through text
## Synopsis
```**sh
$ more
```
## Description
`more` reads data from standard input and prints it to standard output, screen by screen.
`more` is a symlink for [`less`(1)](help://man/1/less), which has a more emulation mode.
## Examples
```sh
# dmesg | more
...
--More--
```
## See Also
* [`less`(1)](help://man/1/less) For the more advanced terminal pager that implements more.
|