I was reading here on Stack Overflow about ** in a path, as in this example:
src/js/**/*.js
I would like to ask if " ** " means "any nested directory" please?!
The double star in this case means all folders within the current folder, with the current folder being src/js
src/js
So in full, find all files with a .js extension, in all subfolders of src/js
2.1m questions
2.1m answers
60 comments
57.0k users