linux expect 的基本使用

hgs19921112發表於2018-08-07

expect -c "

   set timeout -1;

   spawn ssh root@192.168.6.132;

   expect {

    *(yes/no)* {send  yes\r ;exp_continue;}

    *password* {send  123456\r ;exp_continue;}

eof {exit 0 }

}";


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31506529/viewspace-2199362/,如需轉載,請註明出處,否則將追究法律責任。

相關文章