more - Control the Text Displayed at Once
When using commands like dir
or tree
, if the target directory contains a large number of files or folders, the amount of text displayed at once can be overwhelming and may exceed the screenโs viewable area.
For example, if you run the tree
command on a directory with a large hierarchy, it can be difficult to see the entire output as it may exceed the screenโs viewable area.
C:.
โโโโDocuments
โ โโโโProjects
โ โ โโโโProjectA
โ โ โ โโโโDrafts
โ โ โ โ โโโโdraft1.txt
โ โ โ โโโโFinal
โ โ โ โ โโโโfinal_report.docx
โ โ โ โ โโโโpresentation.pptx
โ โ โ โโโโResources
โ โ โ โโโโdata.xlsx
โ โ โ โโโโimage1.png
โ โ โ โโโโimage2.png
โ โ โโโโProjectB
โ โ โ โโโโdocs
โ โ โ โ โโโโspecifications.docx
โ โ โ โ โโโโrequirements.docx
โ โ โ โโโโsrc
โ โ โ โ โโโโmain.py
โ โ โ โ โโโโutils.py
โ โ โ โโโโtests
โ โ โ โโโโtest_main.py
โ โ โ โโโโtest_utils.py
โ โ โโโโProjectC
โ โ โโโโassets
โ โ โ โโโโasset1.jpg
โ โ โ โโโโasset2.jpg
โ โ โโโโbuild
โ โ โ โโโโbuild.log
โ โ โ โโโโoutput.exe
โ โ โโโโsrc
โ โ โโโโmodule1.cpp
โ โ โโโโmodule2.cpp
โ โโโโReports
โ โ โโโโ2021
โ โ โ โโโโQ1
โ โ โ โ โโโโreport.docx
โ โ โ โโโโQ2
โ โ โ โ โโโโreport.docx
โ โ โ โโโโQ3
โ โ โ โ โโโโreport.docx
โ โ โ โโโโQ4
โ โ โ โโโโreport.docx
โ โ โโโโ2022
โ โ โโโโQ1
โ โ โ โโโโreport.docx
โ โ โโโโQ2
โ โ โ โโโโreport.docx
โ โ โโโโQ3
โ โ โ โโโโreport.docx
โ โ โโโโQ4
โ โ โโโโreport.docx
โ โโโโPersonal
โ โโโโPhotos
โ โ โโโโVacation
โ โ โ โโโโphoto1.jpg
โ โ โ โโโโphoto2.jpg
โ โ โโโโFamily
โ โ โ โโโโphoto1.jpg
โ โ โ โโโโphoto2.jpg
โ โ โโโโEvents
โ โ โโโโphoto1.jpg
โ โ โโโโphoto2.jpg
โ โโโโVideos
โ โโโโBirthday
โ โ โโโโvideo1.mp4
โ โ โโโโvideo2.mp4
โ โโโโHolidays
โ โ โโโโvideo1.mp4
โ โ โโโโvideo2.mp4
โ โโโโRandom
โ โโโโvideo1.mp4
โ โโโโvideo2.mp4
โโโโDownloads
โ โโโโSoftware
โ โ โโโโinstaller1.exe
โ โ โโโโinstaller2.exe
โ โโโโDocuments
โ โ โโโโdoc1.pdf
โ โ โโโโdoc2.pdf
โ โโโโMedia
โ โโโโsong1.mp3
โ โโโโsong2.mp3
โโโโMusic
โโโโAlbums
โ โโโโAlbum1
โ โ โโโโtrack1.mp3
โ โ โโโโtrack2.mp3
โ โโโโAlbum2
โ โ โโโโtrack1.mp3
โ โ โโโโtrack2.mp3
โ โโโโAlbum3
โ โโโโtrack1.mp3
โ โโโโtrack2.mp3
โโโโPlaylists
โโโโPlaylist1
โ โโโโsong1.mp3
โ โโโโsong2.mp3
โโโโPlaylist2
โ โโโโsong1.mp3
โ โโโโsong2.mp3
โโโโPlaylist3
โโโโsong1.mp3
โโโโsong2.mp3
In such cases, you can use the more
command to display the content one page at a time.
C:.
โโโโDocuments
โ โโโโProjects
โ โ โโโโProjectA
โ โ โ โโโโDrafts
โ โ โ โ โโโโdraft1.txt
โ โ โ โโโโFinal
โ โ โ โ โโโโfinal_report.docx
-- More --
In this article, we will explain the basic usage of the more
command and how to set its options.
What is the more
command?
The more
command is used to display the contents of a text file one page at a time.
It is particularly useful when the text to be displayed is too large to fit on one screen.
By scrolling through the content, it is convenient for handling large amounts of text data.
Basic usage of the more
command
Basic syntax
more [filename]
Example
For instance, if you want to display the contents of a file named example.txt
, you can enter the following command:
more example.txt
When you run this command, the contents of the file will be displayed one page at a time. Press the spacebar to move to the next page.
Additionally, pressing the Enter key will advance the display one line at a time.
Options for the more
Command
+
Option
Starts displaying from a specific line in the file.
Example
more +20 example.txt
In this case, the display starts from line 20.
Using with Pipes
It can also be used in combination with the dir
command or the type
command.
Example
dir | more
In this case, the contents of the directory will be displayed one page at a time.
4. Examples of Using the more
Command
Checking Log Files
When checking the contents of a large log file, the more
command is useful.
more server.log
Viewing Long Text Files
For example, you can use the more
command to read text files such as novels.
more novel.txt