]> Dogcows Code - chaz/yoink/blob - cscope.make
initial commit
[chaz/yoink] / cscope.make
1 #!/bin/bash
2
3 current=`pwd`
4 cd /
5 find "$current" \
6 -iname "*.cc" -o \
7 -iname "*.h" |sed '/ / s/^\(.*\)/"\1"/' >"$current/cscope.files"
8
9 cd "$current"
10
11 #cscope -b -q
12
This page took 0.033454 seconds and 5 git commands to generate.