Is there a way to use shell globbing to identify nested directories?
so if I have dir/dir1/dir2/dir3/dir4/dir5/.. and I have files under all of them, what is the equival
You may try:
**/*.*
However it'll ignore hidden files (such as .git files). Sometimes it's a life-saver.
.git
Read more at: What expands to all files in current directory recursively? at SO