dotfiles/update.sh

11 lines
169 B
Bash
Raw Normal View History

2017-11-03 07:09:33 +00:00
#!/bin/bash
GIT_DIRS=(. ~/.bash-git-prompt ~/.vim/bundle)
for dir in ${GIT_DIRS[@]} ; do
cd $dir
git pull
cd -
done
vim -c ":PluginUpdate" -c ":q" -c ":q"