From: Thomas G. Lockhart Date: Wed, 8 Apr 1998 06:42:17 +0000 (+0000) Subject: Still mostly empty but add info on PAGER env variable and general paging X-Git-Tag: REL6_3_2~32 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b91d94ec68bdcd28c16bf58c2c1ecc4a95c0011d;p=postgresql Still mostly empty but add info on PAGER env variable and general paging behavior from Brett McCormick. --- diff --git a/doc/src/sgml/psql.sgml b/doc/src/sgml/psql.sgml index 3019396de7..28ff1cd9a2 100644 --- a/doc/src/sgml/psql.sgml +++ b/doc/src/sgml/psql.sgml @@ -2,7 +2,42 @@ <Command>psql</Command> -This section needs to be written. Volunteers? +This section needs to be converted from the original psql man page. Volunteers? + + +To change the paging behavior of your results, set/unset your PAGER environment variable. + + + + +Paging To Screen + + +Author + +From Brett McCormick on the mailing list 1998-04-04. + + + + +To affect the paging behavior of your psql output, +set or unset your PAGER environment variable. I always have to set mine +before it will pause. And of course you have to do this before +starting the program. + + +In csh/tcsh or other C shells: + + + unsetenv PAGER + + +while in sh/bash or other Bourne shells: + + + unset PAGER + +