首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > perl python >

expect脚本有关问题

2012-02-11 
expect脚本问题#!/usr/bin/expect -fset name [lindex $argv 0]set server [lindex $argv 1]spawn ssh $na

expect脚本问题
#!/usr/bin/expect -f
set name [lindex $argv 0]
set server [lindex $argv 1]
spawn ssh $name@$server
expect "yes/no"
send "yes\r"
expect "password:"
send "owner\r"
expect "$"
send "df -k>>1.log"
expect "$"
send "scp 1.log oracle@1.11.11.11:/home/test/\r"
expect "password:"
send "owner2\r"
exit

我这样写行不行 运行结果 1.11.11.11下并没有1.log,也没有下载到本地 希望大家帮着看看

[解决办法]
现在登录也登不上了??你是手动ssh也不行吗???

热点排行