From: Simon Ruderich Date: Tue, 30 Nov 2010 09:10:54 +0000 (+0100) Subject: bin/git-update-all.sh: Pass arguments to git-update.sh. X-Git-Url: https://ruderich.org/simon/gitweb/?a=commitdiff_plain;h=189b0e98a4ad0f1aafb061a2e3322e333c352102;p=config%2Fdotfiles.git bin/git-update-all.sh: Pass arguments to git-update.sh. --- diff --git a/bin/git-update-all.sh b/bin/git-update-all.sh index b2ae8f8..45ef0fa 100755 --- a/bin/git-update-all.sh +++ b/bin/git-update-all.sh @@ -1,6 +1,8 @@ #!/bin/sh # Run git-update.sh for all git repositories in this directory. +# +# All arguments are passed to git-update.sh. -find . -name .git -type d -exec git-update.sh {} \; | less +find . -name .git -type d -exec git-update.sh "$@" {} \; | less