-
-
Save NetOpWibby/b4164f2d0d9a6769c0118738dcae8c15 to your computer and use it in GitHub Desktop.
Clone Multiple Repositories
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Clone multiple repositories | |
echo "=== CLONENATOR ===" | |
array=( "https://github.com/angular/angular.git" | |
"https://github.com/nodejs/node.git" ) | |
for element in ${array[@]} | |
do | |
echo "cloning $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