Monday, 17 January 2022

SSH keys and variables

Leaving this here to remind my future self ...

I wanted to generate a variable containing my SSH public key ..

I tried to simply copy the key to my clipboard and paste it into the variable: -

export MY_PUB_KEY="ssh-rsa ABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDE foo@bar.com"

which is somewhat unwieldy.

However, given that my public key is in a file: -

id_rsa_04012022.pub

why didn't I simply do this ?

export MY_PUB_KEY=$(cat ~/.ssh/id_rsa_04012022.pub)

Now isn't that simpler ?

No comments:

Note to self - Firefox and local connections

 Whilst trying to hit my NAS from Firefox on my Mac, I kept seeing errors such as:- Unable to connect Firefox can’t establish a connection t...