diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-01-05 07:31:32 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-01-05 07:31:32 -0500 |
commit | cbd154a4834f56146dbe744ee2d2c6dccc04c5cb (patch) | |
tree | 71c0aba63b67062de4de98e993ae925f3c201967 /todo.sh | |
parent | d7d1b397197893f0ce49b28f762711b7a9ef1087 (diff) |
todo finder
Diffstat (limited to 'todo.sh')
-rwxr-xr-x | todo.sh | 27 |
1 files changed, 27 insertions, 0 deletions
@@ -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." |