Not with less(1)
, which is default pager in Ubuntu (and GNU in general).
There are several tools available, things that work in terminal and is not a full-blown GNU Emacs is called info(1):
$ info apt
TAB to focus the next link, M-TAB¹ for the previous link, Enter to follow a link under cursor, f (for follow, I guess) to ask which link to go, completion available (usual TAB for that).
Please note, that when started info(1)
defaults to a proper Info documentation (if such exists), rather than manpages. If that is not what you want by some reason, you have to specify man section explicitly:
$ info 'mkdir(1)' # that’s a man page
rather than:
$ info mkdir # that’s a section in the full manual for Coreutils
__
¹ ESC + TAB if meta-tab (which might or might not be the same as Alt + TAB) does not work in your terminal.
man women
;) – mcantsin Apr 28 '14 at 17:54SPACE
andENTER
only get me to the bottom of page (1), not to the next one. – schtandard Apr 28 '14 at 17:57q
the first page first, then useENTER
. – mcantsin Apr 28 '14 at 17:58