On Wed, 28 Aug 1996, Dale Scheetz wrote:
> Is there an environment variable that I can set to 24
> (or even smaller) that will make joe and lynx handle the screen correctly?
The variable is LINES. resize(1x) will output code to set LINES and
ROWS correctly. I use it like this (this is a bash function):
resize ()
{
set -f;
eval $(command resize);
set +f
}
Guy