Skip to content

Instantly share code, notes, and snippets.

@julzhk
Created December 3, 2013 15:44
Show Gist options
  • Save julzhk/7771427 to your computer and use it in GitHub Desktop.
Save julzhk/7771427 to your computer and use it in GitHub Desktop.
Add Public SSH Key to Remote Server in a Single Command
cat ~/.ssh/id_rsa.pub | ssh user@hostname 'cat >> .ssh/authorized_keys'
@julzhk
Copy link
Author

julzhk commented Jan 8, 2014

cd ~/.ssh

and create with :
ssh-keygen -t rsa

@julzhk
Copy link
Author

julzhk commented Jan 8, 2014

replace 'user@hostname' with the target you want to ssh into

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment