Skip to content

Instantly share code, notes, and snippets.

@levicole
Created February 25, 2013 17:29
Show Gist options
  • Save levicole/5031529 to your computer and use it in GitHub Desktop.
Save levicole/5031529 to your computer and use it in GitHub Desktop.
updates all my vim plugins in my vimbundles directory.
for D in $(find . -mindepth 1 -maxdepth 1 -type d) ; do
pushd .;
cd $D;
git pull;
popd;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment