diff options
author | Audric Schiltknecht <storm@chemicalstorm.org> | 2012-10-07 12:45:50 +0200 |
---|---|---|
committer | Audric Schiltknecht <storm@chemicalstorm.org> | 2012-10-07 12:45:50 +0200 |
commit | 048df48526e1b8f5176319f79aaa6276906556bd (patch) | |
tree | 3e0c34a53faf6c5a680267b974dcea86af218305 /install.sh | |
parent | a06f38770593927dfdf4f56d07613b88b469b2f2 (diff) | |
download | dotfiles-048df48526e1b8f5176319f79aaa6276906556bd.tar.gz dotfiles-048df48526e1b8f5176319f79aaa6276906556bd.tar.bz2 dotfiles-048df48526e1b8f5176319f79aaa6276906556bd.zip |
script to install dotfiles
Diffstat (limited to 'install.sh')
-rw-r--r-- | install.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/install.sh b/install.sh new file mode 100644 index 0000000..dc58c45 --- /dev/null +++ b/install.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +# create the symbolic links to the files in this repository + +cd `dirname $0` + +CURRENT_PATH=`pwd` + +ln -s $CURRENT_PATH/bash/.bashrc ~/.bashrc +ln -s $CURRENT_PATH/bash/.bash_aliases ~/.bash_aliases |