]> git.donarmstrong.com Git - infobot.git/blob - scripts/output_stats.sh
scalars
[infobot.git] / scripts / output_stats.sh
1 #!/bin/sh
2
3 cd src/
4 echo -n "DEBUG:  "; grep DEBUG `find -type f`| wc -l
5 echo -n "WARN:   "; grep WARN `find -type f` | wc -l
6 echo -n "FIXME:  "; grep FIXME `find -type f` | wc -l
7 echo -n "status: "; grep status `find -type f` | wc -l
8 echo -n "ERROR:  "; grep ERROR `find -type f` | wc -l
9 echo -n "TODO:   "; grep TODO `find -type f` | wc -l