This commit is contained in:
陆柯 2022-06-10 15:40:18 +08:00
parent 4cc67a822d
commit 06307b8f85
2 changed files with 18 additions and 0 deletions

16
ssh-pubkey-to-remote.bat Normal file
View File

@ -0,0 +1,16 @@
echo *** Append ~/.ssh/id_rsa.pub to remote server
@ if not "%1" == "" (
set REMOTEHOST=%1
) else (
echo Please specify user@remotehost!
@ goto END
)
scp %HOMEDRIVE%%HOMEPATH%\.ssh\id_rsa.pub %REMOTEHOST%:~/tmp.pub
ssh %REMOTEHOST% "mkdir -p ~/.ssh && chmod 700 ~/.ssh && cat ~/tmp.pub >> ~/.ssh/authorized_keys && chmod 600 ~/.ssh/authorized_keys && rm -f ~/tmp.pub"
echo ~/.ssh/id_rsa.pub is appended to %REMOTEHOST%:~/.ssh/authorized_keys
:END

View File

@ -1,5 +1,7 @@
#!/bin/bash
echo You can also try ssh-copy-id user@remotehost
if [ $1 ]
then
REMOTEHOST=$1