mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
8546f75dfc
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>
15 lines
376 B
Plaintext
15 lines
376 B
Plaintext
*** 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" ;
|