Added a directory for tools and a todo-list script
[fmail.git] / tools / todo-list.sh
blobe86fa0a88995a424b711e2239c9e1c0c718cc87f
1 #!/bin/sh
2 for arg in `find -name *.cpp`; do
3 echo "File $arg"
4 grep -n "TODO" $arg
5 echo ""
6 done