kimberly-build/9-get-all-alci-gits-v1.sh

53 lines
1.6 KiB
Bash
Raw Normal View History

2021-07-14 08:33:42 +02:00
#!/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/
2022-10-26 06:28:17 +02:00
alci-calamares-config-btrfs/
2021-07-14 08:33:42 +02:00
alci-calamares-config-dev/
2021-12-25 16:40:54 +01:00
alci-calamares-config-hardened/
2021-07-14 08:33:42 +02:00
alci-calamares-config-lts/
alci-calamares-config-pure/
2022-03-13 17:46:14 +01:00
alci-calamares-config-xanmod-edge/
2021-07-14 08:33:42 +02:00
alci-calamares-config-zen/
alci-dwm/
alci-dwm-nemesis/
alci-iso/
alci-iso-dev/
2021-12-25 16:40:54 +01:00
alci-iso-hardened/
2021-07-14 08:33:42 +02:00
alci-iso-lts/
alci-iso-pure/
2022-03-13 17:46:14 +01:00
alci-iso-xanmod-edge/
2021-07-14 08:33:42 +02:00
alci-iso-zen/
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/arch-linux-calamares-installer/$name
echo "#################################################"
echo "################ "$(basename `pwd`)" done"
echo "#################################################"
done