Chân đế, Niềng răng, Chân đế xoăn ở Bash


9

Đây là câu đố:

Nếu tôi làm:

touch file{1,2,3}

Nó tạo file1, file2, file3

Và nếu tôi làm

rm file[1-3]

Nó xóa chúng.

nhưng nếu tôi làm

touch file[1-3] 

nó tạo ra:

file[1-3]

Tại sao?


1
Hãy thử lặp lại nó shopt -s nullglobtrước đây - bạn sẽ hiểu nó. Xem mywiki.wooledge.org/glob
Rmano

Câu trả lời:


13

Nếu bạn gặp khó khăn khi đọc trang này thay vì thực hiện câu đố:

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]nở vào tập tin có tên file1, file2, file3. Mở rộng tên tệp chỉ xảy ra nếu các tệp phù hợp tồn tại. Nếu không, mô hình được để nguyên. Do đó, với tập tin có tên file1, file2, file3, file[1-3]mở rộng để file1 file2 file3. Không có các tệp này, nó không mở rộng và vẫn như file[1-3]. Với {...}, tên tệp không phải tồn tại, do đó file{1..3}mở rộng ra file1 file2 file3bất kể các tệp có mặt hay vắng mặt.

Khi sử dụng trang web của chúng tôi, bạn xác nhận rằng bạn đã đọc và hiểu Chính sách cookieChính sách bảo mật của chúng tôi.
Licensed under cc by-sa 3.0 with attribution required.