Skip to content

Instantly share code, notes, and snippets.

@hiquest
Created February 12, 2015 12:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hiquest/63b6c123e21e2e9ecec9 to your computer and use it in GitHub Desktop.
Save hiquest/63b6c123e21e2e9ecec9 to your computer and use it in GitHub Desktop.
Update all of your vim plugins in ~/.vim/bundle/
#!/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