dotfiles
Find a file
2016-10-15 08:05:02 -05:00
.bash_functions added .bash_functions file 2016-10-15 08:05:02 -05:00
LICENSE Initial commit 2016-10-14 03:30:05 -05:00
README.md added .bash_functions file 2016-10-15 08:05:02 -05:00

dotfiles

Installation

git clone git@github.com:booboy/dotfiles.git
cd ~/.dotfiles

Source all of the files. Feel free to add to a script or just on cmd line

for DOTFILE in `find $HOME/dotfiles`
do
	[ -f “$DOTFILE” ] && source “$DOTFILE”
done