How many files in the folder?

Number of files in each folder

for i in `ls -d */`; do num=`ls $i | wc -l`; echo "$i: $num"; done