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

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

謎は次の通りです:

私が行った場合:

touch file{1,2,3}

ファイル1、ファイル2、ファイル3を作成します

そしてもし私が

rm file[1-3]

それらを削除します。

でももし私が

touch file[1-3] 

以下を作成します:

file[1-3]

なぜ?

答え1

もしあなたがわざわざ読んでくださったならマニュアルページ謎を作る代わりに:

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]file1は、、、という名前のファイルに展開されますfile2file3ファイル名の展開は、一致するファイルが存在する場合にのみ行われます。存在しない場合、パターンはそのまま残ります。したがって、、、という名前のファイルがある場合file1、は に展開されます。これらのファイルがない場合file2、展開されず、 のままになります。 の場合、ファイル名が存在する必要がないため、ファイルの有無に関係なくは に展開されます。file3file[1-3]file1 file2 file3file[1-3]{...}file{1..3}file1 file2 file3

関連情報