Como alternativa, se o seu grep
for o GNU grep
, você poderá usá-lo da seguinte maneira:
man wget | grep -EA3 '^ *-b'
Em que -A
(uma extensão GNU) é para imprimir o número de linhas após as linhas correspondentes (aqui 3
). você pode usar o número apropriado para uma descrição completa.
Exemplo:
$ man wget | grep -EA3 '^ *-b'
-b
--background
Go to background immediately after startup. If no output file is specified via the -o, output is
redirected to wget-log.
$ man grep | grep -EA3 '^ *-A'
-A NUM, --after-context=NUM
Print NUM lines of trailing context after matching lines. Places a line containing a group separator
(--) between contiguous groups of matches. With the -o or --only-matching option, this has no effect
and a warning is given.