add scripts to scan tags

This commit is contained in:
rayelliott 2020-05-29 15:04:42 +00:00
parent 90cffde075
commit a95d4edeb5
2 changed files with 7 additions and 0 deletions

4
tagscan-external.sh Executable file
View File

@ -0,0 +1,4 @@
#!/bin/sh
if [ -f '.tags-external' ] ; then rm .tags-external; fi
ctags -R -o .tags-external -a ./wp-includes

3
tagscan.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh
ctags -R -o .tags --exclude='node_modules/*' --exclude='wp-includes' *