Help for this page

Select Code to Download


  1. or download this
        local $SIG{PIPE} = 'IGNORE';
        open PAGER, '|'.($ENV{PAGER} || 'less')
    ...
            print PAGER something_else;
        }
        close PAGER;
    
  2. or download this
        select PAGER;
        $| = 1;
    ...
            print something_else
              or last;
        }