Skip to content

Instantly share code, notes, and snippets.

@hongkongkiwi
Last active December 18, 2023 07:45
Show Gist options
  • Save hongkongkiwi/fff178c3243ae5aaff8e to your computer and use it in GitHub Desktop.
Save hongkongkiwi/fff178c3243ae5aaff8e to your computer and use it in GitHub Desktop.
Simple one liner to generate an SSH key without a password in the default place with the comment as hostname then print out the public key for copy and paste.
HOSTNAME=`hostname` ssh-keygen -t rsa -C "$HOSTNAME" -f "$HOME/.ssh/id_rsa" -P "" && cat ~/.ssh/id_rsa.pub
@pligor
Copy link

pligor commented Aug 8, 2022

Why not auto copy in clipboard ?
You need to install xclip either in linux or mac:

linux: sudo apt-get install xclip

mac: brew install xclip

and then append to any of the above commands:

| xclip -selection clipboard

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