You can pass the search string or pattern directly in more command to start displaying from a search string or pattern in Linux more command.
1 2 3 4 5 6 7 8 9 10 11 12 13 |
## display file beginning from search string match ## create a long file with 200 lines > myfile; i=1; while [ $i -le 200 ]; \ do echo "$i" >> myfile; ((i++)); done ## inserts hello on line no. 100 of myfile sed -i "100i hello" myfile more myfile ## screen start from line no. 1 more +/hello myfile ## screen start form line containing first occurance of hello rm myfile |