install script

This commit is contained in:
Loic Nageleisen 2011-05-29 15:35:22 +02:00
parent 2ca33576d6
commit 27d91a3b7e

8
scripts/link_dotfiles.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