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