#!/bin/sh

# Add repositories
sudo apt-key adv \
  --keyserver "hkp://keyserver.ubuntu.com:80" \
  --recv 'E5267A6C' && \
sudo apt-get update && \
sudo apt-get -y install software-properties-common

# Install basics & Clean up
sudo apt-get update && \
sudo apt-get -y install \
  unzip wget vim git curl \
  python-setuptools && \
sudo apt-get clean autoclean && \
sudo apt-get autoremove -y
