Listing 3 Adding and removing keys
Adding a Key to a Running Agent
-------------------------------
# The SSH utility method
ssh-add ~/.ssh/other_identity.dsa
# The keychain method
keychain ~/.ssh/other_identity.dsa
Removing a Single Key
---------------------
# The SSH utility method
ssh-add -d ~/.ssh/amnesia.rsa
|