diff --git a/scripts/link_dotfiles.sh b/scripts/link_dotfiles.sh new file mode 100755 index 0000000..66a1e30 --- /dev/null +++ b/scripts/link_dotfiles.sh @@ -0,0 +1,8 @@ +#!/bin/sh + +for dotfile in *; do + if [ "${dotfile}" != "scripts" ]; then + echo ln -sf "$(pwd)/${dotfile}" "~/.${dotfile}" + fi +done +