igorgue (owner)

Revisions

gist: 169533 Download_button fork
public
Description:
Generate ctags and cscope dbs
Public Clone URL: git://gist.github.com/169533.git
Embed All Files: show embed
gentags.sh #
1
2
3
4
5
6
7
8
9
#!/bin/bash
 
files=`find -iname '*.py'`
echo 'building ctags'
ctags $files
echo $files > cscope.files
echo 'building cscope db'
cscope -b
echo 'done'