creating another ssh key code example
Example 1: create a ssh key
ssh-keygen -t rsa -C "your_email@example.com"
Example 2: create ssh keys
cat ~/.ssh/id_rsa.pub | ssh demo@198.51.100.0 "mkdir -p ~/.ssh && chmod 700 ~/.ssh && cat >> ~/.ssh/authorized_keys"