install script

This commit is contained in:
Loic Nageleisen 2011-05-29 15:36:13 +02:00
parent 27d91a3b7e
commit 949028861f

8
scripts/make_links.sh Executable file
View file

@ -0,0 +1,8 @@
#!/bin/sh
for dotfile in *; do
if [ "${dotfile}" != "scripts" ]; then
echo ln -sf "$(pwd)/${dotfile}" "~/.${dotfile}"
fi
done