1
0
mirror of https://github.com/kremalicious/dotfiles.git synced 2024-06-30 13:41:52 +02:00
dotfiles/make.sh

35 lines
1.2 KiB
Bash
Raw Normal View History

2012-06-18 01:10:31 +02:00
#!/bin/bash
#
# creates symlinks from the home directory to
# any desired dotfiles in ~/dotfiles
#
# adapted from @michaeljsmalley
# https://github.com/michaeljsmalley/dotfiles/blob/master/makesymlinks.sh
########################################################################
# ----------------------------------------------------------------------
# Variables
# ----------------------------------------------------------------------
# dotfiles directory
dir=~/.dotfiles
# list of files/folders to symlink in homedir
2013-10-27 13:08:40 +01:00
files="aliases bashrc bash_profile bash_prompt gitconfig gitignore_global hushlogin private tm_properties"
2012-06-18 01:10:31 +02:00
# ----------------------------------------------------------------------
# change to the dotfiles directory
# ----------------------------------------------------------------------
echo "Changing to the $dir directory"
cd $dir
echo "...done"
# ----------------------------------------------------------------------
# create symlinks from the homedir to any files in the ~/dotfiles directory
# specified in $files
# ----------------------------------------------------------------------
for file in $files; do
echo "Creating symlink to $file in home directory."
ln -s $dir/$file ~/.$file
done
echo "...all done"