% zsh --version
zsh 5.0.2 (x86_64-apple-darwin13.0)
% ls -l
bootstrap/ local_folder/ ssh_confs/ zsh_confs/
I am trying to create a sub directory called "files" inside all the directories in my current folder.. I want to use zsh globbing features..
% setopt extendedglob
% mkdir -pv */files
zsh: no matches found: */files
% mkdir -pv **/files
zsh: no matches found: **/files