Last active
October 5, 2015 22:48
-
-
Save alexfornuto/228fe6e1280648b37534 to your computer and use it in GitHub Desktop.
bash-setup-init - Debian Style
This file contains 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
#!/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