-
-
Save rainforest-of-code/ec82173a5d1122c9a979a37428d2623f to your computer and use it in GitHub Desktop.
Update all Vim bundles for Pathogen
This file contains hidden or 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
#/bin/sh | |
cd ~/.vim/bundle | |
for i in `ls -p`; do | |
cd "$i" | |
echo "Updating $i..." | |
git pull --recurse-submodules | grep -v 'Already up-to-date' | sed 's/^/ /' | |
[ -f .git/.gitmodules ] && git submodule update | sed 's/^/ /' | |
cd .. | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment