You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The special pattern characters have the following meanings:
*
Matches any string, including the null string. When the globstar shell option is enabled, and '*' is used in a filename expansion context, two adjacent '*'s used as a single pattern will match all files and zero or more directories and subdirectories. If followed by a '/', two adjacent '*'s will match only directories and subdirectories.
The text was updated successfully, but these errors were encountered:
Hi - I was wondering if there were any plans to add support for globstar for nested directories?
Right now I can fake it by splitting the pattern on
**
and mixing and matchingpathname:true/false
but it would be nice to have this built in.https://www.codeprocess.io/recursively-walk-a-directory-hierarchy-with-bash-globstar/
https://www.gnu.org/savannah-checkouts/gnu/bash/manual/bash.html
The text was updated successfully, but these errors were encountered: