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

support sudo

This commit is contained in:
Nebel 2022-04-25 19:39:57 +09:00
parent 0b41faff6b
commit 74b2549c68

View file

@ -3,13 +3,15 @@ set -euo pipefail
cd -- "$(dirname -- "$0")"
function main() {
local home
local dotfile
home=$(eval echo ~"${SUDO_USER:-$(id -un)}")
for dotfile in .*; do
[[ $dotfile =~ ^(\.\.?|\.git)$ ]] && continue
dotfile=$(realpath "$dotfile")
(
cd
cd -- "$home"
ln -svf "$dotfile" .
)
done