Skip to content

Instantly share code, notes, and snippets.

@dwo
Created July 18, 2012 11:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dwo/3135604 to your computer and use it in GitHub Desktop.
Save dwo/3135604 to your computer and use it in GitHub Desktop.
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