Add simple installer script

This commit is contained in:
R. Tyler Ballance 2010-05-22 14:05:05 -07:00
parent f6b6354afa
commit c493a250e7
2 changed files with 12 additions and 0 deletions

5
files Normal file
View File

@ -0,0 +1,5 @@
.screenrc
.vim
.vimrc
.gitconfig
.gitignore

7
install.sh Executable file
View File

@ -0,0 +1,7 @@
#!/bin/zsh
for f in $(cat files); do
echo "Creating symbolic link for $f"
ln -s `pwd`/$f ~/$f
done