Wsporniki, szelki, nawiasy klamrowe w Bash


9

Oto zagadka:

Jeśli zrobię:

touch file{1,2,3}

Tworzy plik1, plik2, plik3

A jeśli to zrobię

rm file[1-3]

Usuwa je.

ale jeśli to zrobię

touch file[1-3] 

to tworzy:

file[1-3]

Dlaczego?


1
Spróbuj to powtórzyć shopt -s nullglobwcześniej - zrozumiesz. Zobacz mywiki.wooledge.org/glob
Rmano

Odpowiedzi:


13

Jeśli zadałeś sobie trud czytania strony podręcznika zamiast układania zagadek:

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]rozwija się pliki o nazwach file1, file2, file3. Rozszerzenie nazwy pliku ma miejsce tylko wtedy, gdy istnieją pasujące pliki. Jeśli nie, wzór pozostaje niezmieniony. Dlatego z plikami o nazwach file1, file2, file3, file[1-3]rozszerza się file1 file2 file3. Bez tych plików nie rozwija się i pozostaje jako file[1-3]. Dzięki {...}nazwom plików nie musi istnieć, więc file{1..3}rozwija się file1 file2 file3niezależnie od obecności lub nieobecności plików.

Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.