From 30b00f19a77a2fa5ab0a3ba866368fc804d0775b Mon Sep 17 00:00:00 2001 From: Erik Dubois Date: Tue, 9 Feb 2021 09:27:10 +0100 Subject: [PATCH] aadd script to get everything --- 1-get-all-alci-gits-at-once.sh | 43 ++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100755 1-get-all-alci-gits-at-once.sh diff --git a/1-get-all-alci-gits-at-once.sh b/1-get-all-alci-gits-at-once.sh new file mode 100755 index 0000000..2d61870 --- /dev/null +++ b/1-get-all-alci-gits-at-once.sh @@ -0,0 +1,43 @@ +#!/bin/bash +# +################################################################################################################## +# Written to be used on 64 bits computers +# Author : Erik Dubois +# Website : http://www.erikdubois.be +################################################################################################################## +################################################################################################################## +# +# DO NOT JUST RUN THIS. EXAMINE AND JUDGE. RUN AT YOUR OWN RISK. +# +################################################################################################################## + +echo "This gets all the existing githubs at once" +echo "Fill the array with the original folders first" + +# use ls -d */ > list to get the list of the created githubs and copy/paste in + +directories=( +alci-calamares-config/ +alci-calamares-config-dev/ +alci-calamares-config-pure/ +alci-dwm/ +alci-dwm-nemesis/ +alci-iso/ +alci-iso-dev/ +alci-iso-pure/ +alci-pkgbuild/ +alci_repo/ +nemesis-wallpapers/ +) + +count=0 + +for name in "${directories[@]}"; do + count=$[count+1] + tput setaf 1;echo "Github "$count;tput sgr0; + # if there is no folder then make one + git clone https://github.com/arcolinuxiso/$name + echo "#################################################" + echo "################ "$(basename `pwd`)" done" + echo "#################################################" +done