批量查寻在网站上并采取行动

时间:2014-07-26 14:12:30

标签: batch-file web respond-to

有没有办法创建批处理文件,当它在网站上显示某些东西,并在那里找到图片,文字或其他内容时,它会采取行动,例如,当它找到图片时批处理应该是GOTO :Choice1,当不是GOTO:Choice2?

1 个答案:

答案 0 :(得分:0)

这是一个例子:

@echo off
curl URL_of_Your_Web_site>File.xml
findstr /i "the string to search" file.xml && echo string found || echo string not found

如果您必须在网站上进行登录,则必须首先下载带有您的ID和密码的cookie。