Como eu procuro por '!' (ponto de exclamação) em uma página de manual?

12

Eu quero obter a explicação da opção ! (o que significa excluir ) no comando find no man find .

Em seguida, pressiono / e shift + 1 , um Non-match apareceu, em vez de ! Então, minha pergunta é como procurar ! em uma página manpage?

    
por lizhe 04.02.2016 / 05:20

3 respostas

16

O pager man padrão é less . Se você olhar para a ajuda de less (pressione h enquanto estiver nela), verá:

                          SEARCHING

  /pattern          *  Search forward for (N-th) matching line.
  ?pattern          *  Search backward for (N-th) matching line.
  n                 *  Repeat previous search (for N-th occurrence).
  N                 *  Repeat previous search in reverse direction.
  ESC-n             *  Repeat previous search, spanning files.
  ESC-N             *  Repeat previous search, reverse dir. & spanning files.
  ESC-u                Undo (toggle) search highlighting.
  &pattern          *  Display only matching lines
        ---------------------------------------------------
        A search pattern may be preceded by one or more of:
        ^N or !  Search for NON-matching lines.

Ou em man less :

/pattern
      Search forward in the file for the N-th line containing the pat‐
      tern.  N defaults to 1.  The pattern is a regular expression, as
      recognized  by  the  regular expression library supplied by your
      system.  The search starts at the first line displayed (but  see
      the -a and -j options, which change this).

      Certain  characters  are  special if entered at the beginning of
      the pattern; they modify the type of search rather  than  become
      part of the pattern:

      ^N or !
             Search for lines which do NOT match the pattern.

Assim, um padrão de apenas ! é um padrão vazio (que corresponde a qualquer coisa) negado - assim, nada irá combiná-lo.

Você terá que fugir da significância de ! no início de um padrão, usando uma barra invertida ( \! ), ou fazendo com que não seja o primeiro caractere da regex ( /[!] , para exemplo).

A outra maneira é usar grep :

$ man find | grep !
       with  '-', or the argument '(' or '!'.  That argument and any following
       ! expr True  if  expr  is false.  This character will also usually need
              Same as ! expr, but not POSIX compliant.
       The POSIX standard specifies parentheses '(', ')', negation '!' and the
       find /sbin /usr/sbin -executable \! -readable -print
       find . -perm -444 -perm /222 ! -perm /111
       find . -perm -a+r -perm /a+w ! -perm /a+x
       -perm  /222 or -perm /a+w) but are not executable for anybody ( ! -perm
       /111 and ! -perm /a+x respectively).
       find . -name .snapshot -prune -o \( \! -name *~ -print0 \)|
    
por muru 04.02.2016 / 05:50
7

Você precisa digitar \ antes de digitar ! , para que não seja interpretado como uma expressão regular de negação na pesquisa.

    
por Marcelo Ventura 04.02.2016 / 05:38
4

Outra maneira de fazer isso:

man --html=firefox find

Depois que a página do manual for aberta no firefox, pressione CTRL + F para procurar qualquer caractere.

    
por mchid 04.02.2016 / 05:44