bash:globs
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
bash:globs [2021/02/04 09:33] – [No Case Match - nocasematch] peter | bash:globs [2021/02/04 09:43] (current) – [Glob Star - globstar] peter | ||
---|---|---|---|
Line 405: | Line 405: | ||
(since bash 4.0-alpha) | (since bash 4.0-alpha) | ||
- | globstar recursively repeats a pattern containing | + | globstar recursively repeats a pattern containing **< |
<code bash> | <code bash> | ||
- | $ shopt -s globstar; tree | + | shopt -s globstar; tree |
. | . | ||
├── directory2 | ├── directory2 | ||
Line 418: | Line 418: | ||
</ | </ | ||
- | # Suppose that for the following examples. | + | Suppose that for the following examples. |
Matching files: | Matching files: | ||
Line 434: | Line 434: | ||
</ | </ | ||
- | Just like '*', '**' followed by a '/' | + | <WRAP info> |
+ | **NOTE:** To disable globstar use | ||
<code bash> | <code bash> | ||
- | $ files=(**/ | + | shopt -u globstar |
- | # finds all subdirectories | + | </ |
+ | |||
+ | See: **help shopt** for details. | ||
+ | </ | ||
+ | |||
+ | |||
+ | ---- | ||
+ | |||
+ | Assume you have a folder structure: | ||
+ | |||
+ | < | ||
+ | . | ||
+ | ├── bar | ||
+ | │ | ||
+ | │ | ||
+ | │ | ||
+ | │ | ||
+ | │ | ||
+ | │ | ||
+ | └── fnord.txt | ||
+ | </ | ||
+ | |||
+ | Then **ls** with single star **< | ||
+ | |||
+ | <code bash> | ||
+ | ls *.txt | ||
+ | fnord.txt | ||
+ | </ | ||
+ | |||
+ | The double star operator **< | ||
+ | |||
+ | <code bash> | ||
+ | ls **/*.txt | ||
+ | bar/ | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | </ | ||
+ | |||
+ | |||
+ | <code bash> | ||
+ | files=(**/ | ||
+ | # Finds all subdirectories. | ||
- | $ files=(. **/) | + | files=(. **/) |
- | # finds all subdirectories, | + | # Finds all subdirectories, |
- | # corresponds | + | # Corresponds |
</ | </ | ||
bash/globs.1612431213.txt.gz · Last modified: 2021/02/04 09:33 by peter