Output Directories to Shell
find . -maxdepth 99 -mindepth 1 -type d -printf %P\\n
ls -1l | grep '^d' | awk '{print $8}'
find ./ -type d
find . -maxdepth 99 -mindepth 1 -type d -print0 -printf %P\\n | xargs -0 ls -d
ls -hl | grep '^d'
find . -maxdepth 99 -mindepth 1 -type d -printf %P\\n
ls -1l | grep '^d' | awk '{print $8}'
find ./ -type d
find . -maxdepth 99 -mindepth 1 -type d -print0 -printf %P\\n | xargs -0 ls -d
ls -hl | grep '^d'