Created
February 12, 2015 12:09
-
-
Save hiquest/63b6c123e21e2e9ecec9 to your computer and use it in GitHub Desktop.
Update all of your vim plugins in ~/.vim/bundle/
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/bash | |
set -e | |
ls ~/.vim/bundle | | |
xargs -n1 | | |
while read l; do | |
cd ~/.vim/bundle/$l && git pull | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment