Answers for "how to ssh key"

3

ssh get key

cat ~/.ssh/id_ed25519.pub
Posted by: Guest on December-09-2020
4

create a ssh key

ssh-keygen -t rsa -C "[email protected]"
Posted by: Guest on May-08-2020
3

ssh key

ssh-keygen -t ed25519 -C "[email protected]"
cat ~/.ssh/id_ed25519.pub | clip
Posted by: Guest on January-27-2021
1

SSH key

$ clip < ~/.ssh/id_ed25519.pub
# Copies the contents of the id_ed25519.pub file to your clipboard
Posted by: Guest on November-30-2020

Browse Popular Code Answers by Language