blob: c922e776c58c2b1f2d6a1488b2e5a6fda4811d37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
if (( UID )); then
function {
local envfile="$XDG_RUNTIME_DIR"/ssh-agent.env
local pid=$(awk -F'[=;]' 'FNR == 2 {print $2}' "$envfile" 2>/dev/null)
if [[ -n "$pid" ]] && kill -0 "$pid" &>/dev/null; then
source "$envfile" >/dev/null
else
ssh-agent > "$envfile"
source "$envfile" >/dev/null
fi
}
fi
# vim: ft=zsh
|