Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dankocherga/1117954 to your computer and use it in GitHub Desktop.
Save dankocherga/1117954 to your computer and use it in GitHub Desktop.
upgrade_vim_pathogen_plugins.zsh
#!/usr/bin/env zsh
cd ~/.vim/bundle/
foreach dir (`ls -1d */`)
cd $dir
pwd
if [[ -d .git ]]; then `git pull origin master > /dev/null`; fi
cd ..
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment