web-dev-qa-db-ja.com

マニュアルページで「!」(感嘆符)を検索するにはどうすればよいですか?

!findコマンドでman findオプション(excludeを意味する)の説明を取得したい。

そして/shift + 1を押すと、Non-matchの代わりに!が飛び出します。だから私の質問は、マンページで!を検索する方法ですか?

image

13
lizhe

デフォルトのmanページャーはlessです。 lessのヘルプを見ると(その中にhを押すと)表示されます:

                          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.

または 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.

したがって、!だけのパターンは空のパターン(すべてに一致)negatedです。したがって、何も一致しません。

バックスラッシュ(!)を使用するか、そうでなければ正規表現の最初の文字ではないようにする(\!など)ことにより、パターンの先頭で/[!]の重要性をエスケープする必要があります。

もう1つの方法は、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 \)|
17
muru

\を入力する前に!を入力する必要があります。これにより、検索で否定正規表現として解釈されません。

9
Marcelo Ventura

これを行う別の方法:

man --html=firefox find

Firefoxでマンページが開いたら、を押します CTRL + F 任意の文字を検索します。

4
mchid