Rev 2160 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
#!/bin/shpager=${PAGER-"more -s"}if [ "$1" != "" ]then exec $pager < $1else exec $pagerfi# For the curious: "pager $1" doesn't work in batch, because "more" will# eat the rest of stdin. The no-argument version is intended for use# at the end of a pipeline.