dotfiles/README.md

14 lines
269 B
Markdown
Raw Normal View History

2016-10-14 03:22:45 -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
2016-10-15 08:05:02 -05:00
for DOTFILE in `find $HOME/dotfiles`
2016-10-14 03:22:45 -05:00
do
[ -f “$DOTFILE” ] && source “$DOTFILE”
done