Klammern, Klammern, geschweifte Klammern in Bash


9

Hier geht das Rätsel:

Wenn ich mache:

touch file{1,2,3}

Es erstellt Datei1, Datei2, Datei3

Und wenn ich es tue

rm file[1-3]

Es löscht sie.

aber wenn ich es mache

touch file[1-3] 

es erstellt:

file[1-3]

Warum?


1
Versuchen Sie es shopt -s nullglobvorher zu wiederholen - Sie werden es verstehen. Siehe mywiki.wooledge.org/glob
Rmano

Antworten:


13

Wenn Sie sich die Mühe gemacht haben, die Manpage zu lesen, anstatt Rätsel zu machen:

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]erweitert sich in Dateien mit dem Namen file1, file2, file3. Die Dateinamenerweiterung erfolgt nur, wenn übereinstimmende Dateien vorhanden sind. Wenn nicht, bleibt das Muster unverändert. Daher mit Dateien mit dem Namen file1, file2, file3, file[1-3]erweitert zu file1 file2 file3. Ohne diese Dateien wird es nicht erweitert und bleibt unverändert file[1-3]. Mit {...}müssen die Dateinamen nicht vorhanden sein, daher wird file{1..3}sie file1 file2 file3unabhängig davon erweitert, ob Dateien vorhanden sind oder nicht.

Durch die Nutzung unserer Website bestätigen Sie, dass Sie unsere Cookie-Richtlinie und Datenschutzrichtlinie gelesen und verstanden haben.
Licensed under cc by-sa 3.0 with attribution required.