rc/install.sh

25 lines
566 B
Bash
Executable file

#!/bin/bash
SCRIPT=$(readlink -f "$0")
SCRIPTPATH=$(dirname "$SCRIPT")
HOST=`hostname`
# List of the config files to install
FILES="vimrc zshrc gitconfig vim gitignore_global git_user"
if [[ ! $1 == "--check" ]]
then
cp $SCRIPTPATH/git_user.def $SCRIPTPATH/git_user
sed -i -e "s/{username}/$USER/" $SCRIPTPATH/git_user
sed -i -e "s/{email}/$USER@$HOST/" $SCRIPTPATH/git_user
fi
# Create symbolic links in the user's home dir
for file in $FILES
do
if [ ! -e $HOME/.${file} ]
then
ln -s ${SCRIPTPATH}/${file} $HOME/.${file}
fi
done