Add clone projects

This commit is contained in:
flyingscorpio@ubuntu-desktop 2020-02-17 16:42:17 +01:00
parent d77feac736
commit ba8bee883b
2 changed files with 56 additions and 7 deletions

View file

@ -0,0 +1,49 @@
#!/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

View file

@ -5,6 +5,13 @@
# Open keepass in a separate window. The script will prompt for passwords.
####################
# Install KeePass2 #
####################
sudo apt install keepass2
####################
# Set some aliases #
####################
@ -27,13 +34,6 @@ sudo protonvpn init
sudo protonvpn c --cc NL
####################
# Install KeePass2 #
####################
sudo apt install keepass2
#############################
# Install and configure Git #
#############################