9 lines
278 B
Bash
9 lines
278 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
echo "pulling ssh key..."
|
||
|
scp \
|
||
|
strix@hydrogen.red.helix.saluco.nl:.ssh/config \
|
||
|
strix@hydrogen.red.helix.saluco.nl:.ssh/authorized_keys \
|
||
|
strix@hydrogen.red.helix.saluco.nl:.ssh/id_rsa \
|
||
|
strix@hydrogen.red.helix.saluco.nl:.ssh/id_rsa.pub \
|
||
|
~/.ssh
|