Last active
October 25, 2016 20:31
-
-
Save connormanning/9220fb61691b981dbdcc8f0a4ea6908a to your computer and use it in GitHub Desktop.
Globbing behavior sample
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ tree ~/a | |
/Users/connor/a | |
├── a.rst | |
├── a.txt | |
├── b | |
│ ├── b.rst | |
│ └── b.txt | |
└── c | |
├── c.rst | |
├── c.txt | |
└── d | |
├── d.rst | |
├── d.txt | |
└── e | |
├── e.rst | |
└── e.txt | |
4 directories, 10 files |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ ./a.out | |
~/a/a.txt | |
/Users/connor/a/a.txt | |
~/a/* | |
/Users/connor/a/a.rst | |
/Users/connor/a/a.txt | |
~/a/*.txt | |
/Users/connor/a/a.txt | |
~/a/*/*.txt | |
/Users/connor/a/b/b.txt | |
/Users/connor/a/c/c.txt | |
~/a/*/**.txt | |
/Users/connor/a/b/b.txt | |
/Users/connor/a/c/c.txt | |
/Users/connor/a/c/d/d.txt | |
/Users/connor/a/c/d/e/e.txt | |
~/a/** | |
/Users/connor/a/a.rst | |
/Users/connor/a/a.txt | |
/Users/connor/a/b/b.rst | |
/Users/connor/a/b/b.txt | |
/Users/connor/a/c/c.rst | |
/Users/connor/a/c/c.txt | |
/Users/connor/a/c/d/d.rst | |
/Users/connor/a/c/d/d.txt | |
/Users/connor/a/c/d/e/e.rst | |
/Users/connor/a/c/d/e/e.txt | |
~/a/**.txt | |
/Users/connor/a/a.txt | |
/Users/connor/a/b/b.txt | |
/Users/connor/a/c/c.txt | |
/Users/connor/a/c/d/d.txt | |
/Users/connor/a/c/d/e/e.txt | |
~/a/**/e/*.txt | |
/Users/connor/a/c/d/e/e.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment