Skip to content

Commit

Permalink
Added an quick install script
Browse files Browse the repository at this point in the history
  • Loading branch information
aGHz committed Apr 29, 2015
1 parent 53cb848 commit 5ab7faa
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/bin/sh

mkdir -p `pwd`/bin

ln -s `pwd`/src/dot_aGHz/bash/bashrc.sh `pwd`/.bashrc
ln -s `pwd`/src/dot_aGHz/bash/bash_aliases.sh `pwd`/.bash_aliases
ln -s `pwd`/src/dot_aGHz/bash/bash_prompt.sh `pwd`/.bash_prompt

ln -s `pwd`/src/dot_aGHz/git/gitconfig `pwd`/.gitconfig
ln -s `pwd`/src/dot_aGHz/git/gitignore `pwd`/.gitignore_global
for gitscript in `pwd`/src/dot_aGHz/git/*.sh; do
ln -s $gitscript `pwd`/bin/
done

ln -s `pwd`/src/dot_aGHz/vim/vimrc `pwd`/.vimrc

0 comments on commit 5ab7faa

Please sign in to comment.