find . -mindepth 1 -maxdepth 1 -type d | sort | while read d; do printf "%s: %d files, %s\n" "$d" "$(find "$d" -type f | wc -l)" "$(du -sh "$d" | cut -f1)"; done
one line bash command for to list the total number of files in each directory and below directiroes
and directory total sizses each – Fuck English 😀