..."God does not play Twister," he added, cryptically.
A quick bash script to count the number of files in a set of directories:
DIRS=`ls -d */` for D in $DIRS; do printf "$D " find $D -type f|wc -l done