用expect模拟sftp

作/译者:叶金荣(Email: ),来源:http://imysql.cn,转载请注明作/译者和出处,并且不能用于商业用途,违者必究。
伏笔:server端是基于windows的server-u,启用了sftp,并不是标准的sftp,因此无法用ssh的key信任方式直接登录。为了节约人工,无奈之下,采用expect来解决问题。下面是例子:
#!/usr/bin/expect
##
## 用expect模拟sftp上传文件
## created by yejr(imysql AT imysql.cn),2008/11/20
##
#取得传递参数,构造变量
set DT [lindex $argv 0]
set NU [lindex $argv 1]
set ftp_lcd "/dbbak/$DT/$NU"
#查看本地文件
send "ls -la $ftp_lcd\r"
#发送命令
send "cd $ftp_lcd\r"
#发起sftp
spawn sftp [email protected]
expect "[email protected]'s password:"
#发送密码
send "abccba"
expect "sftp>"
#设定lcd
send "lcd $ftp_lcd\r"
expect "sftp>"
#上传文件,这里不知为何无法使用mput
send "put $ftp_lcd/dbbak*$DT*.sql.gz.md5\r"
expect "sftp>"
send "put $ftp_lcd/dbbak*$DT*.sql.gz\r"
expect "sftp>"
#列文件,确认大小没问题
send "ls -la\r"
expect "sftp>"
#bye bye :)
send "bye\r"
interact
呵呵,有需要的朋友可以用上,顺便提出改进建议。
本文出自 “MySQL中文网”博客 http://www.imysql.cn/

本文出自 “爱MySQL” 博客,转载请与作者联系!

你可能感兴趣的:(模拟,职场,expect,sftp,休闲)