X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=scripts%2Foutput_stats.sh;h=a7314733ab315dafd8e4a12c5f0c5e4a28283f9c;hb=0b8cc0cae8719a4a06ee34ec6bd99f911efc1d9c;hp=bba1c38846e8e3e1fa24287072fc087e0b1a275f;hpb=908f730776ef114bc0a53508b691e85ddcc81727;p=infobot.git diff --git a/scripts/output_stats.sh b/scripts/output_stats.sh old mode 100644 new mode 100755 index bba1c38..a731473 --- a/scripts/output_stats.sh +++ b/scripts/output_stats.sh @@ -1,9 +1,9 @@ #!/bin/sh +echo -n "DEBUG: "; grep DEBUG `find infobot src -type f`| wc -l +echo -n "WARN: "; grep WARN `find infobot src -type f` | wc -l +echo -n "FIXME: "; grep FIXME `find infobot src -type f` | wc -l +echo -n "status: "; grep status `find infobot src -type f` | wc -l +echo -n "ERROR: "; grep ERROR `find infobot src -type f` | wc -l +echo -n "TODO: "; grep TODO `find infobot src -type f` | wc -l -cd src/ -echo -n "DEBUG: "; grep DEBUG `find -type f`| wc -l -echo -n "WARN: "; grep WARN `find -type f` | wc -l -echo -n "FIXME: "; grep FIXME `find -type f` | wc -l -echo -n "status: "; grep status `find -type f` | wc -l -echo -n "ERROR: "; grep ERROR `find -type f` | wc -l -echo -n "TODO: "; grep TODO `find -type f` | wc -l +# vim:ts=4:sw=4:expandtab:tw=80