aboutsummaryrefslogtreecommitdiffstats
path: root/todo.sh
diff options
context:
space:
mode:
Diffstat (limited to 'todo.sh')
-rwxr-xr-xtodo.sh27
1 files changed, 27 insertions, 0 deletions
diff --git a/todo.sh b/todo.sh
new file mode 100755
index 0000000..5f053a2
--- /dev/null
+++ b/todo.sh
@@ -0,0 +1,27 @@
+#!/bin/bash
+
+#
+# Searches for all TODOs and tosses them in a file.
+#
+TODO_COUNT=0
+rm -f TODOS
+touch TODOS
+for file in include/*.hpp
+do
+ echo "########################################" >> TODOS
+ echo $file >> TODOS
+ echo "========================================" >> TODOS
+ grep -n -B 5 -A 5 "TODO" $file | sed s/--/========================================/g >> TODOS
+ TODO_COUNT=$((TODO_COUNT+$(grep -c "TODO" $file)))
+done
+
+for file in src/*.cpp
+do
+ echo "########################################" >> TODOS
+ echo $file >> TODOS
+ echo "========================================" >> TODOS
+ grep -n -B 5 -A 5 "TODO" $file | sed s/--/========================================/g >> TODOS
+ TODO_COUNT=$((TODO_COUNT+$(grep -c "TODO" $file)))
+done
+
+echo "Found" $TODO_COUNT "TODOs."