mirror of
https://github.com/overte-org/overte.git
synced 2025-04-11 11:13:06 +02:00
shell script to regenerate emacs TAGS file for project
This commit is contained in:
parent
77582f50df
commit
105b2c5fd7
1 changed files with 14 additions and 0 deletions
14
tools/refresh-tags.sh
Executable file
14
tools/refresh-tags.sh
Executable 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
|
Loading…
Reference in a new issue