From: Simon Ruderich Date: Sat, 20 Nov 2010 09:03:35 +0000 (+0100) Subject: bin/git-update-all.sh: Runs git-update.sh recursively. X-Git-Url: https://ruderich.org/simon/gitweb/?a=commitdiff_plain;h=4091679bbc1ed03620e31006399e78608c66586b;p=config%2Fdotfiles.git bin/git-update-all.sh: Runs git-update.sh recursively. --- diff --git a/bin/git-update-all.sh b/bin/git-update-all.sh new file mode 100755 index 0000000..b2ae8f8 --- /dev/null +++ b/bin/git-update-all.sh @@ -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