Come posso cercare `!` (Punto esclamativo) in una pagina di manuale?


13

Voglio ottenere la spiegazione !dell'opzione (che significa escludere ) al findcomando in man find.

E poi premo /e shift + 1, Non-matchspuntato, invece di ! Quindi la mia domanda è come cercare !in una manpage?

Immagine

Risposte:


17

Il mancercapersone predefinito è less. Se guardi lessla guida (premi hmentre ci sei dentro), vedrai:

                          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 in 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.

Quindi, uno schema di just !è uno schema vuoto (che corrisponde a qualsiasi cosa) negato - quindi nulla corrisponderà ad esso.

Dovrai sfuggire al significato di !all'inizio di un modello, usando una barra rovesciata ( \!), o altrimenti trasformandolo nel primo carattere della regex ( /[!], per esempio).

L'altro modo è usare 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

Devi digitare \prima di digitare !, in modo che non venga interpretato come un'espressione regolare di negazione nella ricerca.


4

Un altro modo per farlo:

man --html=firefox find

Dopo che la manpage si apre in firefox, premi CTRL+ Fper cercare qualsiasi personaggio.


4
Questo è --htmlo -H.
Boris the Spider
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.