¿Cómo busco `!` (Signo de exclamación) en una página del manual?


13

Quiero obtener la explicación de la !opción (que significa excluir ) en el findcomando en el man find.

Y luego presiono /y shift + 1, aparece un mensaje emergente Non-match, en lugar de !¿Entonces mi pregunta es cómo buscar !en una página de manual?

imagen

Respuestas:


17

El manbuscapersonas predeterminado es less. Si observa lessla ayuda (presione hmientras está en ella), 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.

O en 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.

Entonces, un patrón de just !es un patrón vacío (que coincide con cualquier cosa) negado , por lo que nada lo igualará.

Tendrá que escapar de la importancia de !al comienzo de un patrón, ya sea utilizando una barra invertida ( \!), o de lo contrario, no será el primer carácter de la expresión regular ( /[!], por ejemplo).

La otra forma es 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 \)|

9

Debe escribir \antes de escribir !, para que no se interprete como una expresión regular de negación en la búsqueda.


4

Otra forma de hacer esto:

man --html=firefox find

Después de que se abra la página de manual en Firefox, presione CTRL+ Fpara buscar cualquier carácter.


44
Eso es --htmlo -H.
Boris the Spider
Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.