is what is annoying me. That seems to be what I would expect if I piped it to less. I checked a fedora 31 and another centos 8 box and am seeing the same behaviour. Am I missing something?
The environment variable $PAGER determines what pager to use. The default is 'less'. User
export PAGER=more
to use 'more' instead. Or
export PAGER=
to not pipe to a pager.
P,