Last active
October 2, 2019 06:46
-
-
Save nrollr/6ddf978cc0cc87cc312d to your computer and use it in GitHub Desktop.
Generate SSH keys
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash/ | |
ls -al ~/.ssh # Lists existing files in your .ssh directory | |
ssh-keygen -t rsa -b 4096 -C "[email protected]" # Creates new ssh key, using the provided email as label | |
eval "$(ssh-agent -s)" # Ensure ssh-agent is enabled | |
ssh-add ~/.ssh/id_rsa # Add ssh key to the ssh-agent |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi, I find this command also very helpful: pbcopy < ~/.ssh/id_rsa.pub
It lets you add your generated key to the clipboard, if you like to paste it in somewhere quick.