灌溉梦想,记录脚步
« »
2012年7月23日技术合集

FTP自动登录脚本

这个是简洁脚本:

1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/expect -f 
spawn ftp ftp.forzw.com 
expect "Password: " 
send -- "passwd\r" 
expect "ftp.forzw.com\r\r" 
Last login: Sun Apr 1 21:32:36 2012 from localhost.localdomain\r\r ]0; " 
send -- "cd /pub/test\r" 
expect "\r /pub/test\r" 
send -- "get program.test\r" 
expect "File transfered" 
send -- "exit\r"


复杂的脚本:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/usr/bin/expect -f
 
set verbose_flag 1
 
set username "al"
set password "password"
set host "localhost"
 
set files {abc.pdf foo1.jpg foo2.jpg xyz.pdf}
 
#log_user 0
set timeout -1
 
send_user "starting ncftp ..."
spawn ncftp -u $username -p $password $host
expect "ncftp*>"
 
send_user "doing confirm/close ..."
send "set confirm-close no\r"
expect "ncftp*>"
 
foreach f $files {
  send_user "putting $f ..."
  send "put $f\r"
  expect "ncftp*>"
 
  send_user "deleting $f ..."
  send "del $f\r"
  expect "ncftp*>"
}
 
send_user "saying goodbye ..."
send "bye\r"

日志信息 »

该日志于2012-07-23 22:27由 kevin 发表在技术合集分类下, 你可以发表评论。除了可以将这个日志以保留源地址及作者的情况下引用到你的网站或博客,还可以通过RSS 2.0订阅这个日志的所有评论。

13 条评论

  1. get androxal price at walmart

    buying androxal buy in the uk

  2. discount enclomiphene generic in united states

    buy cheap enclomiphene generic medications

  3. discount rifaximin cost insurance

    discount rifaximin generic online cheapest

  4. how to order xifaxan cost usa

    cheapest buy xifaxan cheap no prescription

  5. online order staxyn purchase england

    cheapest buy staxyn cost uk

  6. how to get free avodart

    online order avodart cheap australia

  7. how to buy dutasteride cheap to buy online

    cheap dutasteride generic next day delivery

  8. buy cheap flexeril cyclobenzaprine cheap wholesale

    ordering flexeril cyclobenzaprine cheap discount

  9. comprar gabapentin sin receta medica se puede comprar

    order gabapentin france where to buy

  10. purchase fildena price south africa

    over counter fildena alternative

  11. get itraconazole cost usa

    cheap itraconazole cheap generic uk

  12. kamagra bez lékařských předpisů

    koupit kamagra online získat předpis

  13. petit prix kamagra

    acheter kamagra pharmacie livrer a domicile de medicaments

发表回复