Skip to main content
5 of 5
added 22 characters in body
Vombat
  • 13.3k
  • 14
  • 47
  • 58

You can use -P flag of man program to use a pager to display pages. For example you can use less as the pager program with flag -p to search for the pattern ERROR happening in the beginning of the line inside the man page:

man -P 'less -p ^ERRORS' symlink 

This opens man page of symlink and jumps directly to the ERRORS section of it.

Vombat
  • 13.3k
  • 14
  • 47
  • 58