mirror of
https://github.com/Matir/skel.git
synced 2026-05-26 05:29:09 -07:00
8 lines
168 B
Bash
Executable File
8 lines
168 B
Bash
Executable File
#!/bin/sh
|
|
|
|
REMOTE_LINK="${HOME}/.ssh/remote_agent.sock"
|
|
|
|
if test \! -L "${REMOTE_LINK}" -a -n "${SSH_AUTH_SOCK}" ; then
|
|
ln -sf "${SSH_AUTH_SOCK}" "${REMOTE_LINK}"
|
|
fi
|