Files
dotfiles/install-scripts/setup.sh
2019-06-20 23:54:14 +01:00

18 lines
453 B
Bash

# start
export DEBIAN_FRONTEND=noninteractive
# apt
sudo apt-get update
sudo apt-get upgrade -y
# brew
yes '' | sh -c "$(curl -fsSL https://raw.githubusercontent.com/Linuxbrew/install/master/install.sh)"
echo 'eval $(/home/linuxbrew/.linuxbrew/bin/brew shellenv)' >>~/.profile
eval $(/home/linuxbrew/.linuxbrew/bin/brew shellenv)
sudo apt-get install build-essential
brew install gcc
# cleanup
sudo apt autoremove -y
export DEBIAN_FRONTEND=readline