how to get ssh key from my machine code example
Example 1: create a ssh key
ssh-keygen -t rsa -C "[email protected]"
Example 2: create ssh keys
cat ~/.ssh/id_rsa.pub | ssh [email protected] "mkdir -p ~/.ssh && chmod 700 ~/.ssh && cat >> ~/.ssh/authorized_keys"