Skip to content

Instantly share code, notes, and snippets.

@dwo
Created July 18, 2012 11:09
Embed
What would you like to do?
my bash script for pulling all projects and updating ctags
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