I'm usually inside GNU Screen or tmux
, and that doesn't give me great scrolling functionality. Is there an alternative to tail -f
that allows me to quickly scroll up?
A tool that is like most
is to less
and more
.
This question is related but far from specific. I'm really looking for something that lets me scroll.
tmux
and intmux
you can pressctrl+b, [
to enter scroll mode. i'm sure you're aware. but many others may not be: depending on your term, you can then use pgup+pgdn and arrow keys to navigate the backlog, or scroll with your mouse; to exit scroll mode you pressq
// you can continue usingtail -f
, orless +F
, orcat
or scroll an entire bash session for that matter.. it's rare to "need to" invokeless
just to scroll through a wall of text. – Shaun Wilson Jan 06 '17 at 08:23tmux
hotkeys are "not that great" you may find how-can-i-page-up-or-down-in-tmux-with-terminal-app useful for customizing (or correcting) your configuration -- i've had bad (default) term configs that rendered extended keys useless. – Shaun Wilson Jan 06 '17 at 08:30