File: output_stats.sh

package info (click to toggle)
blootbot 1.1.0-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,420 kB
  • ctags: 586
  • sloc: perl: 15,941; sh: 154; makefile: 56; sql: 45
file content (8 lines) | stat: -rw-r--r-- 288 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
#!/bin/sh

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