mirror of
https://github.com/kou029w/dotfiles.git
synced 2025-01-18 16:07:59 +00:00
13 lines
178 B
Text
13 lines
178 B
Text
|
#!/bin/bash
|
||
|
set -euo pipefail
|
||
|
|
||
|
for dotfile in .*; do
|
||
|
[[ $dotfile =~ ^(\.\.?|\.git)$ ]] && continue
|
||
|
|
||
|
dotfile=$(realpath "$dotfile")
|
||
|
(
|
||
|
cd
|
||
|
ln -svf "$dotfile"
|
||
|
)
|
||
|
done
|