commit 0a70b6a1b9654cb220cd4b721c83687b37475c88 parent b4aea514e569d820a4822947c10d0b410ffa7917 Author: GeaRSiX <gearsix@tuta.io> Date: Wed, 1 Jul 2020 22:13:23 +0100 doc note in git-clone-bulk Diffstat:
M | src/git-clone-bulk.sh | | | 3 | ++- |
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/git-clone-bulk.sh b/src/git-clone-bulk.sh @@ -1,5 +1,6 @@ #!/bin/sh -# description: clone a set of git repos to current directory +# description: clone a set of git repos to current directory - use sh substitution (rep{1,2,3}) for repos that share hosts # ARGUMENTS: git-clone-bulk repo1 repo2 repo3 ... +# DEPENDENCIES: git for repo in $@; do git clone $repo; done