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
# bash <(curl -s https://raw.github.com/gist/2891426) | |
read -p "Install Xcode (from the App store) and gcc for Lion (http://github.com/kennethreitz/osx-gcc-installer) and press enter to continue." | |
# setup your ssh keys for github | |
if ! [ -e "$HOME/.ssh/id_rsa.pub" ] | |
then | |
echo "Generating ssh key..." | |
read -p "Please enter the email you want to associate with your ssh key: " email | |
ssh-keygen -t rsa -C "$email" |