shell script to regenerate emacs TAGS file for project

This commit is contained in:
Seth Alves 2015-01-31 10:54:01 -08:00
parent 77582f50df
commit 105b2c5fd7

14
tools/refresh-tags.sh Executable file
View file

@ -0,0 +1,14 @@
#!/bin/bash
rm -f TAGS
find . -name *.h -print | while read I
do
etags --append "$I"
done
find . -name *.cpp -print | while read I
do
etags --append "$I"
done