Je souhaite obtenir l'explication de l'option !
(ce qui signifie exclure ) de la commande find
dans le man find
.
Et puis j'appuie sur /
et shift + 1
, un Non-match
est apparu au lieu de !
. Ma question est donc de savoir comment rechercher !
dans une page de manuel?
Le nom de paginateur man
par défaut est less
. Si vous consultez l'aide de less
(appuyez sur h
pendant que vous y êtes), 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 dans 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 seulement !
est un modèle vide (qui correspond à quoi que ce soit) nié - donc rien ne correspondra à cela.
Vous devrez échapper à la signification de !
au début d'un motif, en utilisant une barre oblique inverse (\!
) ou en ne le faisant pas autrement que le premier caractère de la regex (/[!]
, par exemple).
L’autre méthode consiste à 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 \)|
Vous devez taper \
avant de taper !
, afin que cela ne soit pas interprété comme une expression régulière de négation dans la recherche.
Une autre façon de faire ceci:
man --html=firefox find
Une fois la page de manuel ouverte dans Firefox, appuyez sur CTRL + F rechercher n'importe quel caractère.