dotfiles/vim/bundle/update.sh

8 lines
98 B
Bash
Executable File

#!/bin/sh
for i in `find . -type d -depth 1`; do
cd $i
git pull origin master &
cd ..
done