By default, more command start displaying the output from line number one. But you can override this behavior by specifying the line number from which more command will start the display in the output.
1 2 3 4 5 6 7 8 9 10 11 |
## display file beginning from line number ## create a long file with 200 lines > myfile; i=1; while [ $i -le 200 ]; \ do echo "$i" >> myfile; ((i++)); done more myfile ## output start from line number 1 more +10 myfile ## output start from line number 10 more +30 myfile ## N can be any postive integer, start from line number 30 rm myfile |