expect 로 이 루어 진 여러 서버 에 자동 으로 로그 인 하 는 셸 스 크 립 트


#!/usr/bin/expect -f
set ipaddress [lindex $argv 0]
set passwd [lindex $argv 1]
set timeout 30
spawn ssh root@$ipaddress
#expect "yes/no"
#send "yesr"
expect "password:"
send "$passwdr"
expect "]*"
send "mkdir -p /tmp/haha/haha2r"
send "exitr"

***************
expect {
"(yes/no)?" {
     send "yesn"
  }
"password:" {
   ....
}

if {$havepass == 0} {
  expect "password:" { send "$pwn" }
}



expect {
"yes/no" { send "yesr"; exp_continue}
"password:" { send "$passwdr" }
}

좋은 웹페이지 즐겨찾기