Skip to content

Instantly share code, notes, and snippets.

@igorgue
Created August 18, 2009 04:22
Show Gist options
  • Save igorgue/169533 to your computer and use it in GitHub Desktop.
Save igorgue/169533 to your computer and use it in GitHub Desktop.
Generate ctags and cscope dbs
#!/bin/bash
files=`find -iname '*.py'`
echo 'building ctags'
ctags $files
echo $files > cscope.files
echo 'building cscope db'
cscope -b
echo 'done'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment