6 lines
206 B
Plaintext
Executable File
6 lines
206 B
Plaintext
Executable File
# Create symlink to current ssh socket, if a symlink to an active socket
|
|
# does not exist
|
|
if [ ! -S ~/.ssh/ssh_auth_sock ] && [ -S "$SSH_AUTH_SOCK" ]; then
|
|
ln -sf $SSH_AUTH_SOCK ~/.ssh/ssh_auth_sock
|
|
fi
|