谁能帮我把下面的手动过程写成批处理文件。(100分)

  • 主题发起人 主题发起人 idon
  • 开始时间 开始时间
I

idon

Unregistered / Unconfirmed
GUEST, unregistred user!
C:/Documents and Settings/chunfangzhang>ftp -n
ftp> open 192.1.4.200
Connected to 192.1.4.200.
220 (vsFTPd 1.2.1)
ftp> user oracle oracle
331 Please specify the password.
230 Login successful.
ftp> ls txt c:/a.txt
200 PORT command successful. Consider using PASV.
150 Here comes the directory listing.
226 Directory send OK.
ftp: 81 bytes received in 0.00Seconds 81000.00Kbytes/sec.
ftp> bye
221 Goodbye.
 
我写的怎么都不对
ftp -n<<!
open 192.1.4.200
user oracle oracle
prompt off
ls txt c:/a.txt
bye
!
 
把你的输入放到一个文件xx里,利用输入重定向,不需要批处理

ftp -n < xx
 
楼上的 可不可以说详细一点 偶一点都不明白怎么做
 
ftp -n < xx

xx 文件内容
open 192.1.4.200
user oracle oracle
prompt off
ls txt c:/a.txt
bye
 
1、建文本文件log.txt,内容如下:
open 192.1.4.200
user oracle
oracle
ls txt c:/a.txt
bye
2、运行
ftp -n -s:log.txt
 
接受答案了.
 
后退
顶部