Scroll to navigation

MORE(1) General Commands Manual MORE(1)

NAME

more - Display the contents of a text file

SYNOPSIS

more [-d|--silent] [-l|--logical] [-e|--exit-on-eof] [-f|--no-pause] [-p|--print-over] [-c|--clean-print] [-s|--squeeze] [-n|--lines] [--number] [-F|--from-line] [-P|--pattern] [-h|--help] [-V|--version] [files]

DESCRIPTION

Display the contents of a text file

OPTIONS

Display help instead of ringing bell when an illegal key is pressed
Do not pause after any line containing a ^L (form feed)
Exit on End-Of-File
Count logical lines, rather than screen lines
Do not scroll, clear screen and display text
Do not scroll, display text and clean line ends
Squeeze multiple blank lines into one
The number of lines per screen full
Same as --lines option argument
Start displaying each file at line number
The string to be searched in each file before starting to display it
Print help
Print version
[files]
Path to the files to be read

VERSION

v(uutils coreutils) 0.9.0

EXAMPLES

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<Enter>

Exit:

<q>

Display help about interactive commands:

<h>

The examples are provided by the tldr-pages project <https://tldr.sh> under the CC BY 4.0 License. Please note that, as uutils is a work in progress, some examples might fail.

2026-06-04