Comment rechercher «!» (Point d'exclamation) dans une page de manuel?


13

Je veux obtenir l'explication de l' !option (ce qui signifie exclure ) dans la findcommande dans le man find.

Et puis j'appuie sur /et shift + 1, a Non-matchsauté, au lieu de ! Donc ma question est de savoir comment rechercher !dans une page de manuel?

image

Réponses:


17

Le mantéléavertisseur par défaut est less. Si vous regardez lessl'aide de (appuyez hdessus), vous verrez:

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

Ainsi, un modèle de juste !est un modèle vide (qui correspond à n'importe quoi) annulé - donc rien ne le correspondra.

Vous devrez échapper à la signification de !au début d'un modèle, soit en utilisant une barre oblique inversée ( \!), soit en n'en faisant pas le premier caractère de l'expression régulière ( /[!]par exemple).

L'autre façon est d'utiliser 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

Vous devez taper \avant de taper !, afin qu'il ne soit pas interprété comme une expression régulière de négation dans la recherche.


4

Une autre façon de procéder:

man --html=firefox find

Une fois la page de manuel ouverte dans Firefox, appuyez sur CTRL+ Fpour rechercher n'importe quel caractère.


4
C'est --htmlou -H.
Boris the Spider
En utilisant notre site, vous reconnaissez avoir lu et compris notre politique liée aux cookies et notre politique de confidentialité.
Licensed under cc by-sa 3.0 with attribution required.