projekty
/
imago.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
comments to the specification
[imago.git]
/
todo_count.sh
diff --git
a/todo_count.sh
b/todo_count.sh
index
ce2ec14
..
dabdc48
100755
(executable)
--- a/
todo_count.sh
+++ b/
todo_count.sh
@@
-1,3
+1,4
@@
#!/bin/bash
#!/bin/bash
-grep --count TODO imago_pack/*.py pcf.c | sort -nr -t":" -k2 | cut -f2 -d"/"
+grep --count TODO src/*.py pcf.c | cut -f2 -d":" | awk '{sum+=$1}END{printf "total %d\n=====\n", sum}'
+grep --count TODO src/*.py pcf.c | sort -nr -t":" -k2 | cut -f2 -d"/"