11 lines
169 B
Bash
11 lines
169 B
Bash
|
#!/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"
|