projects
/
cmccabe-bin
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Add find-random-word script
[cmccabe-bin]
/
ccc
1
#!/bin/sh
2
3
die() {
4
echo "$@"
5
exit 1
6
}
7
8
find -noleaf \
9
-name '*.c' -o \
10
-name '*.java' -o \
11
-name '*.h' -o \
12
-name '*.cpp' -o \
13
-name '*.c++' \
14
> cscope.files || die "find command failed"
15
16
cscope -icscope.files