find . -type f -print | wc -l
find . -type f | cut -d/ -f2 | sort | uniq -c | sort -nr
find . -type f | cut -d/ -f2 | sort | uniq -c | sort -nr
find . -maxdepth 1 -type d | while read -r dir
do printf "%s: " "$dir"; find "$dir" -type f | wc -l; done