From 949028861f3adba084a8903b900a49a222af963c Mon Sep 17 00:00:00 2001 From: Loic Nageleisen Date: Sun, 29 May 2011 15:36:13 +0200 Subject: [PATCH] install script --- scripts/make_links.sh | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 scripts/make_links.sh diff --git a/scripts/make_links.sh b/scripts/make_links.sh new file mode 100755 index 0000000..66a1e30 --- /dev/null +++ b/scripts/make_links.sh @@ -0,0 +1,8 @@ +#!/bin/sh + +for dotfile in *; do + if [ "${dotfile}" != "scripts" ]; then + echo ln -sf "$(pwd)/${dotfile}" "~/.${dotfile}" + fi +done +