Skip to content

Instantly share code, notes, and snippets.

@nrollr
Last active October 2, 2019 06:46
Show Gist options
  • Save nrollr/6ddf978cc0cc87cc312d to your computer and use it in GitHub Desktop.
Save nrollr/6ddf978cc0cc87cc312d to your computer and use it in GitHub Desktop.
Generate SSH keys
#!/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
Copy link

ghost commented Aug 6, 2016

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment