15 lines
231 B
Bash
Executable file
15 lines
231 B
Bash
Executable file
#!/bin/bash
|
|
|
|
WAI=`pwd`
|
|
|
|
cd ~/
|
|
ln -s $WAI/bashrc ./.bashrc
|
|
ln -s $WAI/vimrc ./.vimrc
|
|
ln -s $WAI/gitconfig ./.gitconfig
|
|
ln -s $WAI/xinitrc ./.xinitrc
|
|
|
|
|
|
if [ ! -d "~/.ssh" ]; then mkdir .ssh/; fi;
|
|
cd ~/.ssh
|
|
ln -s $WAI/ssh/config ./
|
|
|