first check-in of feisty meow codebase. many things broken still due to recent
[feisty_meow.git] / scripts / files / count_files_in_subdirs.sh
1 #!/bin/bash
2 dirs=$*
3 if [ -z "$dirs" ]; then dirs=*; fi
4 for i in $dirs; do
5   ls -1 $i | wc | sed -e "s/^ *\([0-9]*\) *.*$/$i: \1/"
6 done
7