mirror of
https://github.com/lloeki/dotfiles.git
synced 2025-12-06 07:24:39 +01:00
8 lines
144 B
Bash
Executable file
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
|
|
|