For the following directory structure containing files {a,b,c}/{d,e,f}/{x,y,z}.txt:
a
├── d/
│ ├── x.txt
│ ├── y.txt
│ └── z.txt
├── e/
│ ├── x.txt
│ ├── y.txt
│ └── z.txt
└── f/
├── x.txt
├── y.txt
└── z.txt
b
├── d/
│ ├── x.txt
│ ├── y.txt
│ └── z.txt
├── e/
│ ├── x.txt
│ ├── y.txt
│ └── z.txt
└── f/
├── x.txt
├── y.txt
└── z.txt
c
├── d/
│ ├── x.txt
│ ├── y.txt
│ └── z.txt
├── e/
│ ├── x.txt
│ ├── y.txt
│ └── z.txt
└── f/
├── x.txt
├── y.txt
└── z.txt
What should the following negated globs return?
!a!b/d!a/*!a/*/!a/d/*.txt!*a*/d/*.txt
Please post your answers in the comments here.
[b/**/*, c/**/*][a/**/*, b/e/*, b/f/*, c/**/*][b/**/*, c/**/*][b/**/*, c/**/*][a/e/*, a/f/*, b/**/*, c/**/*][a/e/*, a/f/*, b/**/*, c/**/*]