home · contact · privacy
Add symlinking script.
[config] / symlink.sh
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