scripts

My personal collection of scripts
git clone git://src.gearsix.net/scripts
Log | Files | Refs | Atom | README | LICENSE

commit eefca37c8feb34852c323a9ded0684e0495106c3
parent e4dcbfe5c7789c64d4a0ded5f15e4fcf711d44a3
Author: GeaRSiX <gearsix@tuta.io>
Date:   Tue, 23 Jun 2020 00:20:53 +0100

added git-clone-bulk

Diffstat:
Asrc/git-clone-bulk.sh | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/src/git-clone-bulk.sh b/src/git-clone-bulk.sh @@ -0,0 +1,5 @@ +#!/bin/sh +# description: clone a set of git repos to current directory +# ARGUMENTS: git-clone-bulk repo1 repo2 repo3 ... + +for repo in $@; do git clone $repo; done