diff options
author | David Phillips <dbphillipsnz@gmail.com> | 2016-02-07 14:36:31 +1300 |
---|---|---|
committer | David Phillips <dbphillipsnz@gmail.com> | 2016-02-07 14:36:34 +1300 |
commit | 8d65d235929eda9a92eac19d6e663314e8f8f38c (patch) | |
tree | a92239c4b0585d1baf093a9498ddb4f0ad6fc67c /setup | |
download | dotfiles-8d65d235929eda9a92eac19d6e663314e8f8f38c.tar.xz |
Initial import
Diffstat (limited to 'setup')
-rwxr-xr-x | setup | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -0,0 +1,10 @@ +#!/bin/bash + +for i in $(ls -1 | grep -v $(basename $0)) ; do + ln -s ${PWD/$HOME\//}/$i $HOME/.$i +done + +# extra symlinks +pushd $HOME +ln -s .bash_profile .bashrc +popd |