repo.or.cz
/
fmail.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Eliminated searchtree debugging messages; Added UNIX socket (named sockets) support...
[fmail.git]
/
tools
/
todo-list.sh
blob
fd89c8b3620fa0dcd6faad3cc23ed283cd81769b
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
11
fi
12
done