I am able to list all the directories by
find ./ -type d
I attempted to list the contents of each directory and count the number of files i
find . -type f | cut -d/ -f2 | sort | uniq -c
find. -type f
cut -d/ -f2
sort
uniq -c