URL中的批量检查/获取变量

时间:2018-10-03 14:16:24

标签: batch-file

我尝试检查或获取ulr中的数据,但是不起作用。

他不进行在线检查/获取。

set fileon=http://example.com/file.txt
findstr /l "teste@test.com" %fileon%
if %errorlevel%==0 (echo This ok) else (echo Not ok)

请帮我。

1 个答案:

答案 0 :(得分:0)

您可以使用curl下载文件:

set _outFile=outfile.txt
set _url=http://example.com/file.txt
curl -o %_outFile% %_url%

然后在%_outFile%上执行操作。

如果您有用于Windows的git,请尝试where curl,您的系统上可能已经安装了它。