home · contact · privacy
Add symlinking script.
authorChristian Heller <c.heller@plomlompom.de>
Sun, 3 May 2015 01:53:38 +0000 (03:53 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Sun, 3 May 2015 01:53:38 +0000 (03:53 +0200)
symlink.sh [new file with mode: 0644]

diff --git a/symlink.sh b/symlink.sh
new file mode 100644 (file)
index 0000000..abb261c
--- /dev/null
@@ -0,0 +1,7 @@
+#!/bin/sh
+
+dir=~/config/dotfiles
+cd ~
+for file in $dir; do
+    ln -s $dir/$file ~/.$file
+done