I've been trying to create the directory "a" inside all the subdirectories of "example".
What I tried is the following:
mkdir example/*/a
But it doesn't take the '*' as a wildcard, returning mkdir: can not create «example/*/a» directory: It doesn't exist file or directory
Note that I have too much subdirectories in example, so I can't do it by creating a list.
I don't want to do it with for loops, because I'm learning bash and I'm not allowed to use loops. Probably, there is no way to avoid a for loop, in that case, please tell me :).
Thank you.