-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrepobackupper.sh
87 lines (74 loc) · 3.5 KB
/
repobackupper.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#!/bin/bash
clear
function pause(){
read -s -n 1 -p "Press any key to continue . . ."
echo ""
}
echo "repobackupper.sh"
echo ""
echo "Clones all of your GitLab repos to the local disk."
echo "Run whenever you are doing your backups, and"
echo "place them ALONGSIDE your Dropbox folder on the"
echo "USB hard drive."
echo ""
pause
# cd to folder so it's not messy
cd /home/$(whoami)
mkdir repobackupper-output-zoey
cd repobackupper-output-zoey
git clone https://gitlab.com/Novimatrem/novimatrem.gitlab.io
git clone https://gitlab.com/Novimatrem/social
git clone https://gitlab.com/Novimatrem/novisona
git clone https://gitlab.com/Novimatrem/blog
git clone https://gitlab.com/Novimatrem/pain
git clone https://gitlab.com/Novimatrem/textadv.sh
git clone https://gitlab.com/Novimatrem/ra-all
git clone https://gitlab.com/Novimatrem/exec-bat-anything-from-any-protonprefix
git clone https://gitlab.com/Novimatrem/few-fedi-bot-diaspora-mac10-6
git clone https://gitlab.com/Novimatrem/bedtime-reminder
git clone https://gitlab.com/Novimatrem/my-estrogen-reminders
git clone https://gitlab.com/Novimatrem/mood-meds-remind
git clone https://gitlab.com/Novimatrem/my-shower-reminder
git clone https://gitlab.com/Novimatrem/talking-clock
git clone https://gitlab.com/Novimatrem/alarm-clock
git clone https://gitlab.com/Novimatrem/batch-alarm-clock
git clone https://gitlab.com/Novimatrem/super-lock-key
git clone https://gitlab.com/Novimatrem/clearclipboard
git clone https://gitlab.com/Novimatrem/random-files
git clone https://gitlab.com/Novimatrem/improved-visibility-map-mod-for-vulture-for-nethack
git clone https://gitlab.com/Novimatrem/clear-bash-history
git clone https://gitlab.com/Novimatrem/rules-succer
git clone https://gitlab.com/Novimatrem/hearing-protector-65-megapack
git clone https://gitlab.com/Novimatrem/limit-pulseaudio-max-volume-to-100-percent
git clone https://gitlab.com/Novimatrem/warning-sound-if-volume-is-100-percent
git clone https://gitlab.com/Novimatrem/ff14-download-timing-script
git clone https://gitlab.com/Novimatrem/dnd-dungeon-layout-map-maker
git clone https://gitlab.com/Novimatrem/only-working-amd-gpu-driver
git clone https://gitlab.com/Novimatrem/fedora-linux-personal-autosetup
git clone https://gitlab.com/Novimatrem/teeth
git clone https://gitlab.com/Novimatrem/untitled-batch-game-engine-old-abandoned
git clone https://gitlab.com/Novimatrem/personal-autosetup-linux-ubuntu
git clone https://gitlab.com/Novimatrem/a-walk-in-the-park-part1
git clone https://gitlab.com/Novimatrem/c64-basic-stuffs
git clone https://gitlab.com/Novimatrem/walking-reminder
git clone https://gitlab.com/Novimatrem/noexif
git clone https://gitlab.com/Novimatrem/few-fedi-bot
git clone https://gitlab.com/Novimatrem/haiku-themes-linux
git clone https://gitlab.com/Novimatrem/do-bash-thing-if-in-awesomewm
git clone https://gitlab.com/Novimatrem/xkill-keybind
git clone https://gitlab.com/Novimatrem/youtube-dl
git clone https://gitlab.com/Novimatrem/bacon-double-cheeseburger-mod_vulture-for-nethack
git clone https://gitlab.com/Novimatrem/dvorak-qwerty-switch-keybind
git clone https://gitlab.com/Novimatrem/dvorak-qwerty-switch-aliases
git clone https://gitlab.com/Novimatrem/ytdlmp3-command
git clone https://gitlab.com/Novimatrem/look-at-my-snippets-please
git clone https://gitlab.com/Novimatrem/my-awesomewm-mods
git clone https://gitlab.com/Novimatrem/zrepos
git clone https://gitlab.com/Novimatrem/znippets
git clone https://gitlab.com/Novimatrem/multicommittr.sh
git clone https://gitlab.com/Novimatrem/repobackupper
pwd
ls
echo "Done."
# EOF
# meow