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

use local

This commit is contained in:
Nebel 2022-04-25 19:28:26 +09:00
parent efcd77160c
commit 0b41faff6b

View file

@ -2,6 +2,8 @@
set -euo pipefail
cd -- "$(dirname -- "$0")"
function main() {
local dotfile
for dotfile in .*; do
[[ $dotfile =~ ^(\.\.?|\.git)$ ]] && continue
@ -11,3 +13,6 @@ for dotfile in .*; do
ln -svf "$dotfile" .
)
done
}
main