From 196aac9dc3611066b5b7f91e58a5e6a13e68c098 Mon Sep 17 00:00:00 2001 From: Austen Date: Wed, 16 Jul 2014 15:07:09 -0400 Subject: [PATCH] Added update.sh and replaced from :w to :up --- update.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 update.sh diff --git a/update.sh b/update.sh new file mode 100755 index 0000000..4d4de6d --- /dev/null +++ b/update.sh @@ -0,0 +1,9 @@ +#!/bin/sh +for DIR in *; do + #[ -d "$DIR" ] && "cd "$DIR" ; pwd" + if [ -d "$DIR" ] ; then + cd "$DIR" + git up + cd .. + fi +done