Answers for "ssh with key"

3

ssh get key

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

ssh key

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

ssh with key

ssh -i ~/.ssh/id_rsa.pub [email protected] -p25
Posted by: Guest on April-26-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