Скобки, фигурные скобки, фигурные скобки в 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, file2, file3. Расширение имени файла происходит только в том случае, если соответствующие файлы существуют. Если нет, шаблон остается как есть. Таким образом, с файлами с именами file1, file2, file3, file[1-3]расширяется в file1 file2 file3. Без этих файлов он не расширяется и остается как file[1-3]. С {...}именами файлов не обязательно существовать, поэтому file{1..3}расширяется в file1 file2 file3независимо от наличия или отсутствия файлов.

Связанный контент