Skip to content

Instantly share code, notes, and snippets.

@alexfornuto
Last active October 5, 2015 22:48
Show Gist options
  • Save alexfornuto/228fe6e1280648b37534 to your computer and use it in GitHub Desktop.
Save alexfornuto/228fe6e1280648b37534 to your computer and use it in GitHub Desktop.
bash-setup-init - Debian Style
#!/bin/bash
echo -e "updating the timezone... \n"
sudo cp /usr/share/zoneinfo/America/New_York /etc/localtime
sleep 1
echo -e "Updating, upgrading, installing packages... \n"
sudo apt-get update
sudo apt-get upgrade -y
sudo apt-get install -y git ruby rake
sleep 1
echo -e "Configuring git variables... \n"
git config --global color.ui auto
git config --global user.name alexfornuto
git config --global user.email alex@fornuto.com
sleep 1
echo -e "cloning bash-setup... \n"
git clone https://github.com/alexfornuto/bash-setup.git
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment