dotfiles/bootstrap.sh

35 lines
911 B
Bash
Raw Normal View History

2011-09-05 12:19:31 -06:00
#!/bin/bash
2013-09-30 23:21:02 -06:00
case `uname` in
'Darwin')
readlink_command='greadlink'
;;
*)
readlink_command='readlink'
esac
CURRENT_DIRECTORY="$(dirname "${BASH_SOURCE}" | xargs "${readlink_command}" -f)/dotfiles"
2013-09-25 17:38:16 -06:00
cd $CURRENT_DIRECTORY
echo "Linking From $CURRENT_DIRECTORY"
function symlink_dotfiles() {
2013-09-25 17:38:16 -06:00
[[ -a ~/.dotfiles-backups ]] || mkdir ~/.dotfiles-backups
for filename in *; do
local link_destination="$HOME/.$filename"
local absolute_path="$($readlink_command -f $filename)"
2014-04-08 05:08:57 -06:00
[[ -a $link_destination ]] && mv $link_destination ~/.dotfiles-backups
ln -si $absolute_path $link_destination
2013-09-25 17:38:16 -06:00
done
2011-09-05 12:19:31 -06:00
}
2011-09-05 12:19:31 -06:00
if [ "$1" == "--force" -o "$1" == "-f" ]; then
doIt
2011-09-05 12:19:31 -06:00
else
read -p "This may overwrite existing files in your home directory. Are you sure? (y/n) " -n 1
echo
if [[ $REPLY =~ ^[Yy]$ ]]; then
symlink_dotfiles
fi
2011-09-05 12:19:31 -06:00
fi
unset symlink_dotfiles