From 75caa8b7eeed1d7ef3f7d0c312e204c42e84bf4f Mon Sep 17 00:00:00 2001 From: Carlos Daniel Ruvalcaba Valenzuela Date: Mon, 23 Jul 2007 03:30:11 -0700 Subject: [PATCH] Added a directory for tools and a todo-list script --- tools/todo-list.sh | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100755 tools/todo-list.sh diff --git a/tools/todo-list.sh b/tools/todo-list.sh new file mode 100755 index 0000000..e86fa0a --- /dev/null +++ b/tools/todo-list.sh @@ -0,0 +1,6 @@ +#!/bin/sh +for arg in `find -name *.cpp`; do + echo "File $arg" + grep -n "TODO" $arg + echo "" +done -- 2.11.4.GIT