Add clone projects
This commit is contained in:
parent
d77feac736
commit
ba8bee883b
2 changed files with 56 additions and 7 deletions
49
SetupCockpit/clone_projects.sh
Normal file
49
SetupCockpit/clone_projects.sh
Normal 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
|
||||||
|
|
|
@ -5,6 +5,13 @@
|
||||||
# Open keepass in a separate window. The script will prompt for passwords.
|
# Open keepass in a separate window. The script will prompt for passwords.
|
||||||
|
|
||||||
|
|
||||||
|
####################
|
||||||
|
# Install KeePass2 #
|
||||||
|
####################
|
||||||
|
|
||||||
|
sudo apt install keepass2
|
||||||
|
|
||||||
|
|
||||||
####################
|
####################
|
||||||
# Set some aliases #
|
# Set some aliases #
|
||||||
####################
|
####################
|
||||||
|
@ -27,13 +34,6 @@ sudo protonvpn init
|
||||||
sudo protonvpn c --cc NL
|
sudo protonvpn c --cc NL
|
||||||
|
|
||||||
|
|
||||||
####################
|
|
||||||
# Install KeePass2 #
|
|
||||||
####################
|
|
||||||
|
|
||||||
sudo apt install keepass2
|
|
||||||
|
|
||||||
|
|
||||||
#############################
|
#############################
|
||||||
# Install and configure Git #
|
# Install and configure Git #
|
||||||
#############################
|
#############################
|
Loading…
Add table
Reference in a new issue