Mercurial > hg > config
annotate bin/add_ssh_key.sh @ 820:737b9eda7f77
[git submodules] logging stub
| author | Jeff Hammel <k0scist@gmail.com> | 
|---|---|
| date | Tue, 31 Jan 2017 14:31:03 -0800 | 
| parents | 12f0be02e9cc | 
| children | 
| rev | line source | 
|---|---|
| 
756
 
12f0be02e9cc
http://www.howtogeek.com/168147/add-public-ssh-key-to-remote-server-in-a-single-command/
 
Jeff Hammel <k0scist@gmail.com> 
parents:  
diff
changeset
 | 
1 #!/bin/bash -x | 
| 
 
12f0be02e9cc
http://www.howtogeek.com/168147/add-public-ssh-key-to-remote-server-in-a-single-command/
 
Jeff Hammel <k0scist@gmail.com> 
parents:  
diff
changeset
 | 
2 | 
| 
 
12f0be02e9cc
http://www.howtogeek.com/168147/add-public-ssh-key-to-remote-server-in-a-single-command/
 
Jeff Hammel <k0scist@gmail.com> 
parents:  
diff
changeset
 | 
3 # see http://www.howtogeek.com/168147/add-public-ssh-key-to-remote-server-in-a-single-command/ | 
| 
 
12f0be02e9cc
http://www.howtogeek.com/168147/add-public-ssh-key-to-remote-server-in-a-single-command/
 
Jeff Hammel <k0scist@gmail.com> 
parents:  
diff
changeset
 | 
4 | 
| 
 
12f0be02e9cc
http://www.howtogeek.com/168147/add-public-ssh-key-to-remote-server-in-a-single-command/
 
Jeff Hammel <k0scist@gmail.com> 
parents:  
diff
changeset
 | 
5 KEY=~/.ssh/id_rsa.pub | 
| 
 
12f0be02e9cc
http://www.howtogeek.com/168147/add-public-ssh-key-to-remote-server-in-a-single-command/
 
Jeff Hammel <k0scist@gmail.com> 
parents:  
diff
changeset
 | 
6 | 
| 
 
12f0be02e9cc
http://www.howtogeek.com/168147/add-public-ssh-key-to-remote-server-in-a-single-command/
 
Jeff Hammel <k0scist@gmail.com> 
parents:  
diff
changeset
 | 
7 for arg in $@ | 
| 
 
12f0be02e9cc
http://www.howtogeek.com/168147/add-public-ssh-key-to-remote-server-in-a-single-command/
 
Jeff Hammel <k0scist@gmail.com> 
parents:  
diff
changeset
 | 
8 do | 
| 
 
12f0be02e9cc
http://www.howtogeek.com/168147/add-public-ssh-key-to-remote-server-in-a-single-command/
 
Jeff Hammel <k0scist@gmail.com> 
parents:  
diff
changeset
 | 
9 cat "${KEY}" | ssh ${arg} 'cat >> .ssh/authorized_keys' | 
| 
 
12f0be02e9cc
http://www.howtogeek.com/168147/add-public-ssh-key-to-remote-server-in-a-single-command/
 
Jeff Hammel <k0scist@gmail.com> 
parents:  
diff
changeset
 | 
10 done | 
