码迷,mamicode.com
首页 > 其他好文 > 详细

ftp 交互脚本

时间:2020-01-04 16:52:50      阅读:74      评论:0      收藏:0      [点我收藏+]

标签:use   ESS   The   expect   shel   cal   bin   div   host   

expect ftp 交互

yum -y install expect

vim ftp_upload.sh
#!/usr/bin/expect
spawn ftp localhost  
expect "Name*"     
send "ftp\n"         
expect "ftp>*"
send "cd pub/other\n"
expect "ftp>*"
send "put /tmp/123.txt xo.txt\n"
expect {
        "150 Ok to send data" { send_user "upload sucessfull!";send "quit\n" }  #send_user 类型shell的echo命令
        "553*" { send_user "upload error!";send "quit\n" }
}
expect eof

加权限 chmod +x ftp_upload.sh
执行命令 ./ftp_upload.sh

ftp 交互脚本

标签:use   ESS   The   expect   shel   cal   bin   div   host   

原文地址:https://www.cnblogs.com/gaiting/p/12149191.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!