วงเล็บวงเล็บปีกกาใน 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

หากคุณมีปัญหาในการอ่านmanpageแทนที่จะเป็นปริศนา:

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ถึงโดยไม่คำนึงถึงไฟล์ที่มีอยู่หรือขาดหายไป

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.