Created
November 8, 2017 06:09
-
-
Save hasibomi/c401fe1f9815d1ed67eeffb2fd64a9d5 to your computer and use it in GitHub Desktop.
Generate ssh key
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/sh | |
echo "Enter your email" | |
read EMAIL | |
ssh-keygen -t rsa -b 4096 -C "$EMAIL" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment