mirror of
https://github.com/lloeki/dotfiles.git
synced 2025-12-06 15:34:40 +01:00
9 lines
177 B
Bash
Executable file
9 lines
177 B
Bash
Executable file
#!/bin/sh
|
|
|
|
for dotfile in *; do
|
|
if [ "${dotfile}" != "scripts" ]; then
|
|
echo "linking ${dotfile}"
|
|
ln -sf "$(pwd)/${dotfile}" "$HOME/.${dotfile}"
|
|
fi
|
|
done
|
|
|