1
0
Fork 0
mirror of https://github.com/kou029w/dotfiles.git synced 2025-01-31 06:18:00 +00:00
dotfiles/install

19 lines
265 B
Text
Raw Normal View History

2021-08-14 18:01:30 +09:00
#!/bin/bash
set -euo pipefail
2022-04-22 19:47:02 +09:00
cd -- "$(dirname -- "$0")"
2021-08-14 18:01:30 +09:00
2022-04-25 19:28:26 +09:00
function main() {
local dotfile
for dotfile in .*; do
[[ $dotfile =~ ^(\.\.?|\.git)$ ]] && continue
2021-08-14 18:01:30 +09:00
2022-04-25 19:28:26 +09:00
dotfile=$(realpath "$dotfile")
(
cd
ln -svf "$dotfile" .
)
done
}
main