|
|
@ -7,7 +7,10 @@ SCRIPTPATH=$(dirname "$SCRIPT") |
|
|
FILES="vimrc zshrc gitconfig vim" |
|
|
FILES="vimrc zshrc gitconfig vim" |
|
|
|
|
|
|
|
|
# Create symbolic links in the user's home dir |
|
|
# Create symbolic links in the user's home dir |
|
|
|
|
|
OLDPATH=`pwd` |
|
|
|
|
|
cd $HOME |
|
|
for file in $FILES |
|
|
for file in $FILES |
|
|
do |
|
|
do |
|
|
ln -s -t $HOME .$file |
|
|
ln -s ${SCRIPTPATH}/${file} .${file} |
|
|
done |
|
|
done |
|
|
|
|
|
cd $OLDPATH |
|
|
|