There are places where console output is automatically piped through most, for example the command "systemd-analyze blame" will automatically go through most.
How can I remove most from being automatically inserted before console output on my system?
systemd-analyze --no-pager blame
same for
journalctl
Thanks.
In addition, there are perhaps some environment variables set on your system, like $SYSTEMD-PAGER and $PAGER. Maybe you can alter those with something like this in your .bashrc export SYSTEMD_PAGER=' '
(Disclaimer: I've not played around with this, it's just a hint for probable google-search-keywords ;) )