You can use more -l option to stop pausing if a line contains a form feed.
1 2 3 4 5 6 7 8 9 10 11 12 13 |
## not pause after any line containing a ^L (form feed) ## create a file with multiple form feed (^L) > myfile; i=1; while [ $i -le 100 ]; \ do echo "$i" >> myfile; ((i++)); done echo -e "\n\f\n\f\n\f\n\f\n" >> myfile i=101; while [ $i -le 200 ]; \ do echo "$i" >> myfile; ((i++)); done more mytemplog ## pause after any line containing a ^L (between 100 to 101) more -l mytemplog ## do not pause after any line containing a ^L rm my* |