mirror of
https://github.com/kou029w/dotfiles.git
synced 2025-01-31 06:18:00 +00:00
use local
This commit is contained in:
parent
efcd77160c
commit
0b41faff6b
1 changed files with 13 additions and 8 deletions
9
install
9
install
|
@ -2,7 +2,9 @@
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
cd -- "$(dirname -- "$0")"
|
cd -- "$(dirname -- "$0")"
|
||||||
|
|
||||||
for dotfile in .*; do
|
function main() {
|
||||||
|
local dotfile
|
||||||
|
for dotfile in .*; do
|
||||||
[[ $dotfile =~ ^(\.\.?|\.git)$ ]] && continue
|
[[ $dotfile =~ ^(\.\.?|\.git)$ ]] && continue
|
||||||
|
|
||||||
dotfile=$(realpath "$dotfile")
|
dotfile=$(realpath "$dotfile")
|
||||||
|
@ -10,4 +12,7 @@ for dotfile in .*; do
|
||||||
cd
|
cd
|
||||||
ln -svf "$dotfile" .
|
ln -svf "$dotfile" .
|
||||||
)
|
)
|
||||||
done
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
main
|
||||||
|
|
Loading…
Add table
Reference in a new issue