Skip to content

Instantly share code, notes, and snippets.

@tundal45
Created February 18, 2015 20:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save tundal45/ffe1781ee4ffe099b2a1 to your computer and use it in GitHub Desktop.
Save tundal45/ffe1781ee4ffe099b2a1 to your computer and use it in GitHub Desktop.
#!/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