dotfiles/scripts/link_dotfiles.sh
2011-05-29 15:35:22 +02:00

8 lines
144 B
Bash
Executable file

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