8 lines
158 B
Bash
8 lines
158 B
Bash
#! /bin/sh
|
|
# link all files to the home directory, asking about overwrites
|
|
cd `dirname $0`
|
|
SCRIPT_DIR=`pwd`
|
|
|
|
cd $HOME
|
|
ln --symbolic -f $SCRIPT_DIR/vim/.vimrc
|