From: Christian Heller Date: Sun, 3 May 2015 01:53:38 +0000 (+0200) Subject: Add symlinking script. X-Git-Url: https://plomlompom.com/repos/%7B%7Bprefix%7D%7D/copy_structured?a=commitdiff_plain;h=842cf63728159ac528309278c51f5390c4b02574;p=config Add symlinking script. --- diff --git a/symlink.sh b/symlink.sh new file mode 100644 index 0000000..abb261c --- /dev/null +++ b/symlink.sh @@ -0,0 +1,7 @@ +#!/bin/sh + +dir=~/config/dotfiles +cd ~ +for file in $dir; do + ln -s $dir/$file ~/.$file +done