Add to your SSH Authorized Keys from a string, file, or url.
https://webinstall.dev/ssh-authorize| Installer Source| Releases (json) (tab)
Add to your SSH Authorized Keys from a string, file, or url.
https://webinstall.dev/ssh-authorize| Installer Source| Releases (json) (tab)
These are the files / directories that are created and/or modified with this install:
~/.config/envman/PATH.env
~/.local/bin/ssh-authorize
~/.ssh/authorized_keys
# Windows
$Env:ProgramData\ssh\administrators_authorized_keys
Does the tedious work of making sure your
.ssh/authorized_keys
exists with the proper permissions, and that only valid keys from a given string, file, or URL go into it!
Use ssh-authorize
to add trusted public keys to allow others to login to your
servers / systems / local computers;
# ssh-authorize <ssh-pubkey-or-file-or-url> [comment]
ssh-authorize https://github.com/jonny.keys 'My GitHub Keys'
USAGE
ssh-authorize <ssh-pubkey-or-file-or-url> [comment]
EXAMPLES
ssh-authorize https://github.com/you.keys 'My GH Keys'
ssh-authorize ./id_rsa.you@example.co.pub
ssh-authorize 'ssh-rsa AAAA...example.co'
LOCAL IDENTIFY FILES
/home/app/.ssh/id_rsa.pub
For the simplest case it seems almost silly to even have a utility for this:
mkdir -p ~/.ssh/
chmod 0700 ~/.ssh/
touch ~/.ssh/authorized_keys
chmod 0600 ~/.ssh/
curl https://github.com/me.keys >> ~/.ssh/authorized_keys
but... tedium, error checking... things are never as simple as they seem.
You will need to run from an Elevated PowerShell, or use the Windows sudo.
At first blush it seems easy enough to just add download or add files to
~/.ssh/authorized_keys
, but there are complexities (especially on Windows).
This just adds a layer of convenience, and a few benefits:
curl
(macOS, Ubuntu) or wget
(Docker, Alpine)https