Linux Commands Helper
💬 Your AI-powered Linux assistant
more Command - View File Contents One Page at a Time
more is a command-line pager used to view the contents of text files one screen at a time. It is useful for reading long files in the terminal.
Syntax
more [options] [file ...]
Examples
more /etc/passwd
View the contents of /etc/passwd one page at a time.
cat file.txt | more
Pipe the output of cat to more for paginated viewing.
Notes
- Use the spacebar to go to the next page,
q
to quit. - Similar to
less
, but with fewer features. - May not support backward navigation.