]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
bin/git-update-all.sh: Runs git-update.sh recursively.
authorSimon Ruderich <simon@ruderich.org>
Sat, 20 Nov 2010 09:03:35 +0000 (10:03 +0100)
committerSimon Ruderich <simon@ruderich.org>
Sat, 20 Nov 2010 09:03:35 +0000 (10:03 +0100)
bin/git-update-all.sh [new file with mode: 0755]

diff --git a/bin/git-update-all.sh b/bin/git-update-all.sh
new file mode 100755 (executable)
index 0000000..b2ae8f8
--- /dev/null
@@ -0,0 +1,6 @@
+#!/bin/sh
+
+# Run git-update.sh for all git repositories in this directory.
+
+
+find . -name .git -type d -exec git-update.sh {} \; | less