摘要:
#!/usr/bin/expect ### 新版双层跳板机版本 ### # 设置15秒超时时间 set timeout 15 # 设置参数名称 set jumpusr [lindex $argv 0] set jumphost [lindex $argv 1] set jumppassword [lindex $argv 2] set jumpid [lindex $argv 3] se... 阅读全文
摘要:
#!/usr/bin/expect ### 两层跳板机版本 ### set timeout 15 set jumpusr [lindex $argv 0] set jumphost [lindex $argv 1] set jumppassword [lindex $argv 2] set usr 阅读全文