I have two txt files placed in folders of every shoot, one txt named after the model and another txt that is named "outfit-(description.of.outfit).txt", which, as the name suggests describes the outfit worn by the model.
d
├── 2014.09.15
│ ├── model.a.txt
│ └── outfit-desc.a.txt
├── 2014.10.16
│ ├── model.b.txt
│ └── outfit-desc.z.txt
├── 2014.09.19
│ ├── model.a.txt
│ └── outfit-desc.b.txt
├── 2014.09.23
│ ├── model.a.txt
│ └── outfit-desc.c.txt
So if I search
outfit txt
I could search
child:model.a child:outfit
On the other hand, if I search
model.a outfit
<model.a> <outfit>
I want to see the description of all the outfits worn by one particular model.
I would also like to know if the solution of this situation can be expanded to three pieces of information, for example if I had three txt files, one named after the model, other named "outfit-(description.of.outfit).txt" and third named "location-(description.of.location).txt".
Now I'd provide lock down any two variables, like model name and location and would like to see all the situations where these two variables (that are now basically constants as they have been defined) intersect with the third variable.
So that means all the locations where a specific model was wearing a specific outfit.
Or all the outfits worn by a specific model at a specific location.