summaryrefslogtreecommitdiffstatshomepage
path: root/ssh/ssh.sh
blob: 9abfbdb29a6ee9accf47b6385fe2be3ccc169270 (plain)
1
2
3
4
5
6
7
8
9
10
if [ -z "$SSH_AUTH_SOCK" ]; then
   # Check for a currently running instance of the agent
   RUNNING_AGENT="`ps -ax | grep 'ssh-agent -s' | grep -v grep | wc -l | tr -d '[:space:]'`"
   if [ "$RUNNING_AGENT" = "0" ]; then
        # Launch a new instance of the agent
        ssh-agent -s &> $HOME/.ssh/ssh-agent
   fi
   eval `cat $HOME/.ssh/ssh-agent` > /dev/null 
   ssh-add &> /dev/null 
fi