From b4ca9315e3adacb5c4bca64eb2b86983cc09c3e1 Mon Sep 17 00:00:00 2001 From: Mathieu Maret Date: Wed, 30 Jul 2014 14:07:25 +0200 Subject: [PATCH] Add instruction & helpers --- README | 5 +++++ install_config.sh | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/README b/README index e69de29..1e3fad8 100644 --- a/README +++ b/README @@ -0,0 +1,5 @@ +First get git submodule: +git submodule update --init + +Then install_config.sh will produce a list of link to copy/past in a terminal. This allow you to select the config files you want + diff --git a/install_config.sh b/install_config.sh index 77febb4..cb1ac2d 100755 --- a/install_config.sh +++ b/install_config.sh @@ -1,6 +1,6 @@ #!/bin/bash -for i in $(ls -A| grep -e "^\."| grep -v "git"|grep -v "swp") +for i in $(ls -A| grep -e "^\."| grep -v ".git$" |grep -v "swp") do echo "ln -s $PWD/$i $HOME/$i" done