dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit 06ea013de9b3dd0dd8829d185185f01d0f102670
parent 1b17e3f1c3ad93c165dd7bb281bbb5bcf9fca9d8
Author: Anders Damsgaard <adc@geo.au.dk>
Date:   Sat, 10 Aug 2013 21:43:25 +0200

added script to update vim git repos

Diffstat:
A.vim/bundle/update-repos.sh | 7+++++++
1 file changed, 7 insertions(+), 0 deletions(-)

diff --git a/.vim/bundle/update-repos.sh b/.vim/bundle/update-repos.sh @@ -0,0 +1,7 @@ +#!/bin/sh +for d in `ls -F | grep /`; do + echo $d + cd $d + git pull + cd .. +done