-
Notifications
You must be signed in to change notification settings - Fork 1
/
1-get-all-alci-gits-v1.sh
executable file
·52 lines (47 loc) · 1.59 KB
/
1-get-all-alci-gits-v1.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/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-hardened/
alci-calamares-config-lts/
alci-calamares-config-pure/
alci-calamares-config-xanmod/
alci-calamares-config-zen/
alci-dwm/
alci-dwm-nemesis/
alci-grub-theme/
alci-iso/
alci-iso-dev/
alci-iso-hardened/
alci-iso-lts/
alci-iso-pure/
alci-iso-xanmod/
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