mirror of
https://git.freebsd.org/ports.git
synced 2025-05-31 02:16:27 -04:00
without arbitrary limits, (other than memory and processor speed) that runs under, and interacts with, the UNIX Operating system. PR: 16641 Submitted by: Abel Chow <abel@Island.DHS.ORG>
14 lines
376 B
Text
14 lines
376 B
Text
*** rdb~ Wed Jul 16 10:23:13 1997
|
|
--- rdb Wed Feb 9 20:01:38 2000
|
|
***************
|
|
*** 155,158 ****
|
|
Jones XY 77 47
|
|
EOF
|
|
$helpinfo .= "\n$RCS_ID\n" ;
|
|
! system "echo \"$helpinfo\" | less" ;
|
|
--- 155,159 ----
|
|
Jones XY 77 47
|
|
EOF
|
|
$helpinfo .= "\n$RCS_ID\n" ;
|
|
! $pager = $ENV{'PAGER'} ? $ENV{'PAGER'} : "more";
|
|
! system "echo \"$helpinfo\" | $pager" ;
|