home · contact · privacy
Force writing of symlink files even when destination exists.
[config] / symlink.sh
1 #!/bin/sh
2
3 dir=~/config/dotfiles
4 cd ~
5 for file in `ls $dir`; do
6     ln -fs $dir/$file ~/.$file
7 done