# start the agent with C-shell style commands (-c versus -s for Bourne)
eval $(ssh-agent -c)
# load the key(s)
ssh-add
# verify they're loaded (-l for list)
ssh-add -l
# connect to the first server
ssh -A user@example.com
# verify the key(s) made it
ssh-add -l