my bash script for pulling all projects and updating ctags
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CWD=`pwd` | |
for i in `find . -type d -maxdepth 1`; do | |
echo $i | |
cd $i | |
git pull --rebase && git submodule update --init --recursive | |
ctags -R * > /dev/null | |
cd $CWD | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment