Open man page and search for string in a single command
Try this trick:
man chmod | less +'/a\+x'
or
man chmod | more +'/a\+x'
With a backslash before the +
sign because what comes after /
is an extended regular expression.
Try this trick:
man chmod | less +'/a\+x'
or
man chmod | more +'/a\+x'
With a backslash before the +
sign because what comes after /
is an extended regular expression.