linux command

more

Linux Command – more ใช้ในการอ่านข้อมูลและค้นหาข้อมูลใน file

 

คำสั่ง

1. แสดงข้อมูลภายใน file

more <file>

$ more file1
ant,10
bat,11
cat,12
dog,13
boy,14
man,23
rat,21

2. แสดงข้อมูลโดยเริ่มจากบรรทัดที่ระบุ

more +<line number> <file>

$ more +3 file1
cat,12
dog,13
boy,14
man,23
rat,21

 

3. แสดงข้อมูลลัพธ์จากคำสั่งในหน้าแรก

<command> | more

ls |more
file1
file2
test

 

โครงสร้างคำสั่ง

  more [options] file...

 

รายละเอียด

เป็นคำสั่งที่ใช้ในการอ่านข้อมูลและค้นหาข้อมูลใน file เป็นคำสั่งยุคดั้งเดิมที่เกิดขึ้นมา และถูกนำไปพัฒนาต่อให้มีความสามารถสูงขึ้นเช่นคำสั่ง “less”

 

Option

 -d Prompt with "[Press space to continue, 'q' to quit.]", and display "[Press 'h' for instructions.]" instead of ringing the bell when an illegal key is pressed.

 -l Do not pause after any line containing a ^L (form feed).

 -f Count logical lines, rather than screen lines (i.e., long lines are not folded).

 -p Do not scroll. Instead, clear the whole screen and then display the text. Notice that this option is switched on automatically if the executable is named page.

 -c Do not scroll. Instead, paint each screen from the top, clearing the remainder of each line as it is displayed.

 -s Squeeze multiple blank lines into one.

 -u Suppress underlining.

 -number
 The screen size to use, in number of lines.

 +number
 Start displaying each file at line number.

 +/string
 The string to be searched in each file before starting to display it.

 

กลุ่มคำสั่ง

vi(1), less(1)

 

Reference:

คำสั่ง Unix – Linux Command

Linux, Unix

 

Author: Suphakit Annoppornchai

Credit: https://saixiii.com

Leave a Reply