49 lines
1.3 KiB
Bash
49 lines
1.3 KiB
Bash
#!/bin/sh
|
|
|
|
# This script clones all the different repos
|
|
|
|
os='none'
|
|
while [ $os != 'debian' ] && [ $os != 'arch' ]
|
|
do
|
|
read -p "Which OS do you use? " os
|
|
done
|
|
|
|
|
|
##################
|
|
# REPOS ON LIME2 #
|
|
##################
|
|
|
|
cd
|
|
|
|
# VimConf.git
|
|
git clone ssh://flyingscorpio@2px.info.tm/~/repos/VimConf.git
|
|
# Lessons.git
|
|
git clone ssh://flyingscorpio@2px.info.tm/~/repos/Lessons.git
|
|
# RootMe.git
|
|
git clone ssh://flyingscorpio@2px.info.tm/~/repos/RootMe.git
|
|
|
|
|
|
###################
|
|
# REPOS ON GITLAB #
|
|
###################
|
|
|
|
if [ ! -e ~/SRC ]; then
|
|
mkdir ~/SRC
|
|
fi
|
|
|
|
cd ~/src
|
|
|
|
git clone https://gitlab.com/e2li/depydoc.git
|
|
git clone https://gitlab.com/flyingscorpio/2px.git
|
|
git clone https://gitlab.com/flyingscorpio/BlurMySearches.git
|
|
git clone https://gitlab.com/flyingscorpio/JsonToPython.git
|
|
git clone https://gitlab.com/flyingscorpio/LVEL-website.git
|
|
git clone https://gitlab.com/flyingscorpio/MarioSokoban.git
|
|
git clone https://gitlab.com/flyingscorpio/PythonLocalBlockchain.git
|
|
git clone https://gitlab.com/flyingscorpio/Roboc-GUI.git
|
|
git clone https://gitlab.com/flyingscorpio/Roboc-console
|
|
git clone https://gitlab.com/flyingscorpio/SudokuSolver.git
|
|
git clone https://gitlab.com/flyingscorpio/TicTacToe.git
|
|
git clone https://gitlab.com/flyingscorpio/WhitespaceInterpreter.git
|
|
git clone https://gitlab.com/flyingscorpio/WikipediaAcronymScraper.git
|
|
|