Surprised they missed follow! It’s a bit odd to use, but once you get used to it it’s better than tail in many circumstances IMO. `less +F` starts less following stdin or whatever file argument you’ve provided. breaks following, allowing you to search around a business-as-usual `less` session. Hitting `F` (that’s uppercase) starts following again. Yes, you can just start following within a session with `F` too if you…
If you're following a pipe (such as `kubectl logs | less +F`), is sent to all processes in a pipeline, so it stops less from following and it stops the other process entirely. Then you can't start following again with F, or load more data in with G. Less provides an alternative of to stop following, but that is intercepted by most shells.
WoW, thanks a lot! That was my pain for many years. C-x works in Gnome Console just fine.