blob: cd9f1b599e08252686e59650e4be1abc561d9342 (
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)`](less.md), which has a more emulation mode.
## Examples
```sh
# dmesg | more
...
--More--
```
## See Also
* [less(1)](less.md) For the more advanced terminal pager that implements more.
|