运行批处理ftp时空日志文件?

时间:2016-07-20 19:30:04

标签: loops batch-file logging ftp

我正在运行运行ftp连接的批处理文件。 一切正常; 我唯一的问题是我想看到ftp会话的结果。 我这样做了:

    @echo off
    (
    for /f "usebackq delims=" %%a in ("IP.txt") do (
       ping -n 1 %%a |find "TTL=" >nul 
       if errorlevel 1 (echo %%a failed) else (echo      %%a passed
start c:\ftp -s:test.txt %aa) 
    )>%%a.txt
    )>output.log

但这只会创建一个空的txt文件。 如果我不在批处理文件中执行相同的命令 - 它正在工作

可能是什么问题?

由于

0 个答案:

没有答案