summaryrefslogtreecommitdiff
path: root/templates/terminal/length/node.def
blob: a6aaa8576e23d542b7ae4329b0d188b58a86d55c (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}}