ssh-copy-id もどき

ssh-copy-id もどきのバッチファイル #

ssh-copy-id コマンドが Windows にはないので、最小限のバッチファイルです。

REM 1st argument: hostname or IP address (with an user name)
REM 2nd argument: path to a public key
type %2 | ssh %1 "mkdir -p .ssh && cat >> .ssh/authorized_keys"