]> git.donarmstrong.com Git - infobot.git/blob - scripts/output_stats.sh
modify for new debian release
[infobot.git] / scripts / output_stats.sh
1 #!/bin/sh
2 echo -n "DEBUG:  "; grep DEBUG `find infobot src -type f`| wc -l
3 echo -n "WARN:   "; grep WARN `find infobot src -type f` | wc -l
4 echo -n "FIXME:  "; grep FIXME `find infobot src -type f` | wc -l
5 echo -n "status: "; grep status `find infobot src -type f` | wc -l
6 echo -n "ERROR:  "; grep ERROR `find infobot src -type f` | wc -l
7 echo -n "TODO:   "; grep TODO `find infobot src -type f` | wc -l
8
9 # vim:ts=4:sw=4:expandtab:tw=80