more

Windows CMD · Text · available in the simulator

What it does

Displays paginated output.

Syntax

more [/e [/c] [/p] [/s]] [+n] < archivo

Options and parameters

  • /e

    Extended mode.

  • /c

    Clears the screen before displaying.

  • +N

    Starts at line N.

  • /E

    Enables extended navigation features.

  • /C

    Clears the screen before displaying each page.

  • /P

    Expands FormFeed characters.

  • /S

    Squeezes multiple blank lines into a single line.

  • /T

    Expands tabs to the specified number of spaces.

  • +n

    Starts displaying from the specified line.

    more +10 archivo.txt

Usage examples

  • more archivo.txt
  • type log.txt | more
  • more /e archivo.txt
  • more +10 archivo.txt
Practise more

Related commands