added support for specific dotfiles

This commit is contained in:
2013-02-21 11:46:38 -07:00
parent 754d1691fd
commit ef0affaf80
3 changed files with 25 additions and 0 deletions

View File

@@ -47,6 +47,15 @@ if [ ! -f "${HOME}"/.bashrc ]; then
ln -s "${HOME}"/.bash_profile "${HOME}"/.bashrc
fi
###
# dotfiles
###
cd dotfiles
for i in *; do
cp "${i}" "${HOME}/.${i}"
done
cd "${ROOT}"
###
# git
###