view bin/add_ssh_key.sh @ 926:f1168a3417d2 default tip

rm old email
author Jeff Hammel <k0scist@gmail.com>
date Tue, 04 Mar 2025 10:21:18 -0800 (22 hours ago)
parents 12f0be02e9cc
children
line wrap: on
line source
#!/bin/bash -x

# see http://www.howtogeek.com/168147/add-public-ssh-key-to-remote-server-in-a-single-command/

KEY=~/.ssh/id_rsa.pub

for arg in $@
do
    cat "${KEY}" | ssh ${arg} 'cat >> .ssh/authorized_keys'
done