Last active
June 19, 2018 12:48
-
-
Save rightson/a80be43d1e8eab24f2ba5996d6d6ed87 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo 'Updating apt ...' | |
sudo apt update | |
echo 'Installing minimal deps ...' | |
sudo apt install -y openssh-server git vim vim-gtk3 tmux tree gparted zsh-antigen terminator curl build-essential | |
echo 'Upgrading system ...' | |
sudo apt upgrade -y | |
echo 'Installing custom dev env ...' | |
if [ ! -d ~/.env ]; then | |
git clone https://github.com/rightson/shell-dev-env ~/.env | |
fi | |
~/.env/deploy.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment