CBX322 Put this into ~/.bash_profile if using the bash shell in Tiger: SSHAGENT=/usr/bin/ssh-agent if [ -z "$SSH_AUTH_SOCK" -a -x "$SSHAGENT" ]; then eval `$SSHAGENT $SSHAGENTARGS` trap "kill $SSH_AGENT_PID" 0 Then start a new shell and type: You are prompted for the password of your ssh-keys. See: http://mah.everybody.org/docs/ssh for further information. (Version 0.7.1) |