Add instruction & helpers

This commit is contained in:
Mathieu Maret 2014-07-30 14:07:25 +02:00 committed by Mathieu Maret
parent c953c1f404
commit b4ca9315e3
2 changed files with 6 additions and 1 deletions

5
README
View File

@ -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

View File

@ -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