括弧、中括弧、Bashの中括弧


9

なぞなぞ:

私が行った場合:

touch file{1,2,3}

file1、file2、file3を作成します

そして私がするなら

rm file[1-3]

それらを削除します。

でも私がやれば

touch file[1-3] 

それは作成します:

file[1-3]

どうして?


1
shopt -s nullglob前に繰り返してみてください-あなたはそれを理解するでしょう。mywiki.wooledge.org/glob
Rmano

回答:


13

なぞなぞを作成する代わりにマンページを読むのに苦労した場合:

Brace Expansion
   Brace  expansion  is  a  mechanism  by  which  arbitrary strings may be
   generated.  This mechanism is similar to pathname  expansion,  but  the
   filenames generated need not exist. 
...
Pathname Expansion
   After  word  splitting,  unless  the -f option has been set, bash scans
   each word for the characters *, ?, and [.  If one of  these  characters
   appears,  then  the word is regarded as a pattern, and replaced with an
   alphabetically sorted list  of  filenames  matching  the  pattern  (see
   Pattern  Matching  below). If no matching filenames are found, and the
   shell option nullglob is not enabled, the word is left  unchanged.
...
Pattern Matching

   Any character that appears in a pattern, other than the special pattern
   characters described below, matches itself.  ...

   The special pattern characters have the following meanings:

   ...
          [...]  Matches  any  one  of the enclosed characters.  A pair of
                 characters  separated  by  a  hyphen  denotes   a   range
                 expression;  any  character  that falls between those two
                 characters,  inclusive,  using   the   current   locale's
                 collating sequence and character set, is matched.

file[1-3]名前のファイルに展開file1file2file3。ファイル名の展開は、一致するファイルが存在する場合にのみ行われます。そうでない場合、パターンはそのまま残されます。したがって、指定されたファイルでfile1file2file3file[1-3]に展開file1 file2 file3。これらのファイルがないと、ファイルは拡張されず、のままfile[1-3]です。を使用する{...}と、ファイル名は存在する必要がないため、ファイルの有無file{1..3}file1 file2 file3関係なく展開されます。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.