Created
September 2, 2011 19:46
-
-
Save jeremyboggs/1189689 to your computer and use it in GitHub Desktop.
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
#! /usr/bin/env bash | |
DOTFILES = ~/.dotfiles | |
mkdir ~/.dotfiles.old | |
for i in ~/.vim ~/.vimrc ~/.gvimrc ~/vimfiles ~/.bash_profile ~/.gitignore ~/.gitconfig; do | |
[ -e $i ] && mv $i ~/.dotfiles.old | |
done | |
git clone https://github.org/clioweb/dotfiles.git $DOTFILES | |
cd $DOTFILES | |
rake install | |
# vim: set sw=4: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment