Eliminated searchtree debugging messages; Added UNIX socket (named sockets) support...
[fmail.git] / tools / todo-list.sh
blobfd89c8b3620fa0dcd6faad3cc23ed283cd81769b
1 #!/bin/sh
2 for arg in `find -name *.cpp`; do
3 ret=`grep -n TODO $arg`
4 if [ -n "$ret" ]
5 then
6 echo "File $arg"
7 echo "$ret"
8 echo ""
9 else
10 continue
12 done