From 0ca4a530f49d5b15acccab40cad58ceb00327f7c Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Sun, 3 May 2015 04:19:39 +0200 Subject: [PATCH] Force writing of symlink files even when destination exists. --- symlink.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/symlink.sh b/symlink.sh index 3d399d3..9343880 100755 --- a/symlink.sh +++ b/symlink.sh @@ -3,5 +3,5 @@ dir=~/config/dotfiles cd ~ for file in `ls $dir`; do - ln -s $dir/$file ~/.$file + ln -fs $dir/$file ~/.$file done -- 2.30.2