Skip to content

Instantly share code, notes, and snippets.

@gsquire
Last active April 7, 2016 23:45
Show Gist options
  • Save gsquire/e7782876f4f0b5947a2881adbd5d154a to your computer and use it in GitHub Desktop.
Save gsquire/e7782876f4f0b5947a2881adbd5d154a to your computer and use it in GitHub Desktop.
#!/bin/bash
for d in $HOME/.vim/bundle/*; do
echo "updating $(basename $d)..."
(cd $d && git pull)
done
printf "\nall plugins updated\n"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment