Mercurial > hg > config
view bin/add_ssh_key.sh @ 783:d564f7ad8294
this now works again, and without docker-machine; ephermal testing for now, ephemeral testing forever
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Wed, 24 Aug 2016 14:39:51 -0700 |
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