summaryrefslogtreecommitdiff
path: root/themes/CodeIT/.devcontainer/.zprofile
blob: 5f04837d1493ad5a3499eb7d57127d964dc8b6ae (plain)
1
2
3
4
5
6
7
8
9
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 &> .ssh/ssh-agent
   fi
   eval `cat .ssh/ssh-agent`
fi