标题: [文本处理] CURL POST数据 保存的问题 求助~ [打印本页]
作者: necnec1 时间: 2015-5-7 22:35 标题: CURL POST数据 保存的问题 求助~
本帖最后由 necnec1 于 2015-5-8 19:41 编辑
我按照CURL的参数 构造了一个POST 内容如下
curl --data "要post的数据" http://xxxxx -o/--output
curl --data "要post的数据" http://xxxxx -o/--output
怎么弄 才能将2组POST的结果 写入到一个文件?
我批处理以后 只能保存一组 求指教
作者: gawk 时间: 2015-5-7 23:00
- curl --data "要post的数据" http://xxxxx -o/--output
- REM 歇几秒
- ping -n 5 127.0.0.1 >nul
- curl --data "要post的数据" http://xxxxx -o/--output
复制代码
作者: gawk 时间: 2015-5-7 23:03
但是我用批处理 像下面这样 保存为AA.BAT 运行 得到的结果却一个都不对
真实代码发出来看看,有些字符在BAT里面需要转义。
作者: tmplinshi 时间: 2015-5-8 12:26
C:\>curl -d "site=baidu%2Ecom" http://xxxxx -o "output.txt"
在批处理文件中,百分号要写成一对:
@echo off
curl -d "site=baidu%%2Ecom" http://xxxxx -o "output.txt"
欢迎光临 批处理之家 (http://bbs.bathome.net/) |
Powered by Discuz! 7.2 |