8 lines
119 B
Bash
Executable File
8 lines
119 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ "$(ssh-add -l)" == "" ]]; then
|
|
ssh-add $HOME/.ssh/joshs_key </dev/null
|
|
fi
|
|
|
|
exec /usr/bin/ssh "$@"
|