[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

[其他] 【已解决】批处理怎样实现多个内容同时筛选查找?

本帖最后由 chouxia 于 2015-7-20 08:29 编辑
  1. curl www.baidu.com |find /i "ok" >nul
复制代码
用这个可以判断网页内容中是否有ok
errorlevel也正确
现在需要查找另外一段内容,需要在一行代码中实现!请问如何操作?
举例,在curl的回显中需要再find一个"none"
应该怎么操作?

我今儿也在玩CURL, 你是要取CURL的HTTP状态码么

TOP

回复 5# chouxia
  1. curl www.baidu.com | findstr "OK error"
复制代码

TOP

这个是curl的返回值
<pre class='xdebug-var-dump' dir='ltr'>
<b>array</b> <i>(size=2)</i>
  'hash' <font color='#888a85'>=&gt;</font> <small>string</small> <font color='#
cc0000'>'lj5Q5ofZG4z7ghrwTJHhIgiVIc5f'</font> <i>(length=28)</i>
  'key' <font color='#888a85'>=&gt;</font> <small>string</small> <font color='#c
c0000'>'lj5Q5ofZG4z7ghrwTJHhIgiVIc5f'</font> <i>(length=28)</i>
</pre>HTTP/1.1 100 Continue

HTTP/1.1 200 OK
Date: Thu, 02 Jul 2015 00:46:49 GMT
Server: Apache/2.4.9 (Win64) PHP/5.5.12
X-Powered-By: PHP/5.5.12
Set-Cookie: PHPSESSID=lutmp9i5ve5qsa32i78bopak53; path=/
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Content-Length: 73
Content-Type: text/html
error http://............
现在需要find HTTP/1.1 200 OK
还要find error http://.

TOP

回复 3# chouxia


    请把2楼代码的实际结果和你希望的结果分别发出来看看有何差异

TOP

DAIC 发表于 2015-7-2 09:05



    我现在既需要ok的返回页需要none的返回啊

TOP

  1. curl www.baidu.com | findstr /i "ok none"
复制代码

TOP

返回列表