Created
February 18, 2015 20:05
-
-
Save tundal45/ffe1781ee4ffe099b2a1 to your computer and use it in GitHub Desktop.
This file contains 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 | |
echo "Bash version ${BASH_VERSION}..." | |
current_dir = `pwd` | |
cd ~/.vim/bundle | |
for plugin in `ls ~/.vim/bundle` | |
do | |
echo "Updating $plugin" | |
cd $plugin | |
git pull --rebase origin master | |
cd .. | |
echo "DONE!" | |
done | |
cd $current_dir |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment