User Tools

Site Tools


bash:globs

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
bash:globs [2021/02/04 09:34] – [Glob Star - globstar] peterbash:globs [2021/02/04 09:43] (current) – [Glob Star - globstar] peter
Line 418: Line 418:
 </code> </code>
  
-Suppose that for the following examples.+Suppose that for the following examples.
  
 Matching files: Matching files:
Line 434: Line 434:
 </code> </code>
  
-Just like '*', '**' followed by a '/' will only match directories:+<WRAP info> 
 +**NOTE:**  To disable globstar use
  
 <code bash> <code bash>
-files=(**/+shopt -u globstar 
-finds all subdirectories+</code> 
 + 
 +See:  **help shopt** for details. 
 +</WRAP> 
 + 
 + 
 +---- 
 + 
 +Assume you have a folder structure: 
 + 
 +<code> 
 +
 +├── bar 
 +│   ├── foo 
 +│   │   └── baz 
 +│   │       └── hurz 
 +│   │           └── lolz 
 +│   │               └── hello.txt 
 +│   └── poit.txt 
 +└── fnord.txt 
 +</code> 
 + 
 +Then **ls** with single star **<nowiki>*</nowiki>** would list: 
 + 
 +<code bash> 
 +ls *.txt 
 +fnord.txt 
 +</code> 
 + 
 +The double star operator **<nowiki>**</nowiki>** will work on the subfolders.  The output will look like: 
 + 
 +<code bash> 
 +ls **/*.txt 
 +bar/foo/baz/hurz/lolz/hello.txt  bar/poit.txt  fnord.txt 
 +</code> 
 + 
 +---- 
 + 
 +<WRAP info> 
 +**NOTE:**  Just like **<nowiki>*</nowiki>**, **<nowiki>**</nowiki>** followed by a **<nowiki>/</nowiki>** will only match directories: 
 +</WRAP> 
 + 
 + 
 +<code bash> 
 +files=(**/
 +Finds all subdirectories.
  
-files=(. **/) +files=(. **/) 
-finds all subdirectories, including the current directory +Finds all subdirectories, including the current directory. 
-corresponds to: find -type d+Corresponds to: find -type d.
 </code> </code>
  
bash/globs.1612431270.txt.gz · Last modified: 2021/02/04 09:34 by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki