Skip to content

Instantly share code, notes, and snippets.

@daniframos
Created September 21, 2017 08:33
Show Gist options
  • Save daniframos/09c2d89217ecca42ffb1e39daab9c573 to your computer and use it in GitHub Desktop.
Save daniframos/09c2d89217ecca42ffb1e39daab9c573 to your computer and use it in GitHub Desktop.
#!/bin/sh
# Clone multiple repositories.
echo "=== CLONENATOR ==="
array=( "https://github.com/kkrico/Linqpad.git"
"https://github.com/kkrico/Stefanini-Demandas.git"
"https://github.com/kkrico/EasyMappper.git"
"https://github.com/kkrico/Localhost.git"
"https://github.com/kkrico/AcquaBene.git"
"https://github.com/kkrico/kkrico-angular.git"
"https://github.com/kkrico/Exercism.git"
"https://github.com/kkrico/SQL.git"
"https://github.com/kkrico/roadkill.git"
"https://github.com/kkrico/StepByStep.git"
"https://github.com/kkrico/CustomerContact.git"
"https://github.com/kkrico/AmigoSecreto.git"
"https://github.com/gvohra/sqlpromptsnippets.git" )
for element in ${array[@]}
do
echo "clonning $element"
git clone $element
done
echo "=== DONE ==="
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment