Skip to content

Instantly share code, notes, and snippets.

@kunalkushwaha
Created November 11, 2013 06:13
Show Gist options
  • Save kunalkushwaha/7408694 to your computer and use it in GitHub Desktop.
Save kunalkushwaha/7408694 to your computer and use it in GitHub Desktop.
Build ctags for cscope
#!/bin/bash
find -name '*.c' -o -name '*.h' > cscope.files
cscope -b
CSCOPE_DB=cscope.out; export CSCOPE_DB
ctags -L cscope.files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment