Abra a página man e procure por string em um único comando

15

Em vez de fazer man chmod e /a+x saltar para a primeira seção na man page chmod que menciona a+x , gostaria de saber se existe uma maneira de abrir a página man em uma pesquisa específica string, semelhante a como você pode fazer vi +string filename.txt em vi (m).

    
por Gregg Leventhal 29.10.2013 / 21:16

2 respostas

20

Tente este truque:

man chmod | less +'/a\+x'

ou

man chmod | more +'/a\+x'

Com uma barra invertida antes do sinal + , porque o que vem depois de / é uma expressão regular estendida .

    
por 29.10.2013 / 21:19
0

Não tanto quanto eu sei (mas como @sputnick pontos fora, eu não sei muito) , mas você pode analisar:

man chmod | grep -C 5 'a+x'

Eu recomendaria usar uma string que realmente existe na página man, algo como:

$ man chmod | grep -C 5 set-user-ID
   traversals.

SETUID AND SETGID BITS
   chmod  clears  the  set-group-ID  bit  of a regular file if the file's group ID does not match the
   user's effective group ID or one of the user's supplementary group IDs, unless the user has appro‐
   priate  privileges.   Additional  restrictions  may cause the set-user-ID and set-group-ID bits of
   MODE or RFILE to be ignored.  This behavior depends on the policy and functionality of the  under‐
   lying chmod system call.  When in doubt, check the underlying system behavior.

   chmod preserves a directory's set-user-ID and set-group-ID bits unless you explicitly specify oth‐
   erwise.  You can set or clear the bits with symbolic modes like u+s and g-s, and you can set  (but
   not clear) the bits with a numeric mode.

RESTRICTED DELETION FLAG OR STICKY BIT
   The  restricted  deletion  flag or sticky bit is a single bit, whose interpretation depends on the
    
por 29.10.2013 / 21:20