0
我想問你關於我的腳本,我不能通過ssh自動登錄。如何使用ssh登錄遠程服務器(槽殼腳本)
set timeout 30
/usr/bin/ssh -p 8484 [email protected]
expect
{
"[email protected] password"
{
send "Passw0rd\r"
}
}
我想問你關於我的腳本,我不能通過ssh自動登錄。如何使用ssh登錄遠程服務器(槽殼腳本)
set timeout 30
/usr/bin/ssh -p 8484 [email protected]
expect
{
"[email protected] password"
{
send "Passw0rd\r"
}
}
spawn
缺少與您的命令:spawn /usr/bin/ssh -p 8484 [email protected]
expect
並不指望{
要上下一行;改爲寫expect {
。
一個'
似乎缺少:"[email protected]'s password"
你好,你沒忘記 「:」 作爲密碼: – Archemar 2014-09-01 12:54:54
[如何使用ssh在遠程計算機上運行shell腳本?](http://stackoverflow.com/questions/305035/how-to-use-ssh-to-run-shell-script-on-一個遠程機器) – Kowser 2014-09-01 12:56:23