1// This is free and unencumbered software released into the public domain. 2 3use crate::var; 4 5/// See: https://man7.org/linux/man-pages/man1/ssh.1.html#ENVIRONMENT 6pub fn ssh_auth_sock() -> Option<String> { 7 var("SSH_AUTH_SOCK") 8}