summaryrefslogtreecommitdiff
path: root/templates/terminal/length/node.def
blob: 47624e00cf853b023060b12a41425e68ea587a9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
help: Set terminal page length [0 will disable paging]
run: if [ -n "$3" ] ; then
	if [ $3 -eq 0 ] ; then
	   OFR_PAGER='cat -s' ;
	else
	   export LINES=$3 ;
	   stty rows $3 ;
	fi ;
     else
        eval $( resize ) ;
     fi ;
     : ${OFR_PAGER:=${OFR_DEFAULT_PAGER}}