Post History
Where can I find documentation on double asterisk in glob expansion? It is discussed in the .gitignore section of Pro Git. It works in ls **/* to list all terminal files. It is supported by py...
#2: Post edited
- Where can I find documentation on double asterisk in glob expansion?
It is discussed in the [.gitignore section of Pro Git](https://git-scm.com/docs/gitignore#_pattern_format) and also works in `ls **/*` to list all terminal files.It is also supported by python's [glob library](https://docs.python.org/3/library/glob.html).
- Where can I find documentation on double asterisk in glob expansion?
- 1. It is discussed in the [.gitignore section of Pro Git](https://git-scm.com/docs/gitignore#_pattern_format).
- 2. It works in `ls **/*` to list all terminal files.
- 3. It is supported by python's [glob library](https://docs.python.org/3/library/glob.html).
- Despite this, I cannot find mention of it in the glob man pages.
#1: Initial revision
Documentation for double asterisk glob expansion
Where can I find documentation on double asterisk in glob expansion? It is discussed in the [.gitignore section of Pro Git](https://git-scm.com/docs/gitignore#_pattern_format) and also works in `ls **/*` to list all terminal files. It is also supported by python's [glob library](https://docs.python.org/3/library/glob.html).