Skip to content

Instantly share code, notes, and snippets.

@alimsky
Created August 1, 2011 10:07
Show Gist options
  • Save alimsky/1117887 to your computer and use it in GitHub Desktop.
Save alimsky/1117887 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