X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=scripts%2Foutput_stats.sh;h=a7314733ab315dafd8e4a12c5f0c5e4a28283f9c;hb=e4a9397b50848fd83f084324176e2afbaeaa241f;hp=5210890a92217fd9be93634e724bb4487fd8c564;hpb=f379c839fd6255431912ea38348a5ac3799810b4;p=infobot.git diff --git a/scripts/output_stats.sh b/scripts/output_stats.sh old mode 100644 new mode 100755 index 5210890..a731473 --- a/scripts/output_stats.sh +++ b/scripts/output_stats.sh @@ -1,8 +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 +# vim:ts=4:sw=4:expandtab:tw=80