diff --git a/tagscan-external.sh b/tagscan-external.sh new file mode 100755 index 0000000..212bbd0 --- /dev/null +++ b/tagscan-external.sh @@ -0,0 +1,4 @@ +#!/bin/sh + +if [ -f '.tags-external' ] ; then rm .tags-external; fi +ctags -R -o .tags-external -a ./wp-includes diff --git a/tagscan.sh b/tagscan.sh new file mode 100755 index 0000000..17d0a0f --- /dev/null +++ b/tagscan.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +ctags -R -o .tags --exclude='node_modules/*' --exclude='wp-includes' *