当前位置:网站首页>Special characters & escapes in bat
Special characters & escapes in bat
2022-08-01 23:10:00 【Purple fire mulberry】
Look at the example first
curl -H "Content-Type:application/json"-X POST-d "{\"value\":\"type=username&username=xxxx0001\"}"http://127.0.0.1:8111/loginbyother//The above command is to wrap the line for the convenience of reading the code, it is actually a whole line
Executing the above statement in Windows Terminal will always report an error
curl: no URL specified!curl: try 'curl --help' for more information
I always thought it was a problem with quotation marks, so I used various methods to escape the quotation marks, and even used UrlEncode, but it didn't work. Finally, it was determined that it was the problem of the ampersand, because in windows, & means a commandconcatenation, so it must be escaped.
& escape ====> ^&
Then modify the code as follows
curl -H "Content-Type:application/json"-X POST-d "{\"value\":\"type=username^&username=xxxx0001\"}"http://127.0.0.1:8111/loginbyother//The above command is to wrap the line for the convenience of reading the code, it is actually a whole line
This kind of problem is often encountered in the bat file, and you can eat a lot of money and become wiser~
边栏推荐
- xctf attack and defense world web master advanced area web2
- C语言——分支语句和循环语句
- 【C补充】链表专题 - 单向链表
- 还在纠结报表工具的选型么?来看看这个
- bat 之 特殊字符&转义
- excel vertical to horizontal
- (Translation) How the contrasting color of the button guides the user's actions
- 6133. 分组的最大数量
- Mini Program Graduation Works WeChat Food Recipe Mini Program Graduation Design Finished Product (8) Graduation Design Thesis Template
- 用virtualenv和Virtualenvwrapper虚拟环境管理工具创建虚拟环境
猜你喜欢
随机推荐
IDEA常用插件
Jmeter是什么
【C补充】链表专题 - 单向链表
C#大型互联网平台管理框架源码:基于ASP.NET MVC+EF6+Bootstrap开发,支持多数据库
萍不回答
研发团队数字化转型实践
Wechat Gymnasium Reservation Mini Program Graduation Design Finished Work Mini Program Graduation Design Finished Product (2) Mini Program Function
联邦学习入门
杭电多校3 1012. Two Permutations dp*
毕业作业
chrome复制一张图片的base64数据
下载安装 vscode(含汉化、插件的推荐和安装)
APP special test: traffic test
excel edit a cell without double clicking
How to use pywinauto and pyautogui to link the anime lady and sister please go home
浅析多服务在分布式系统下多事务通信处理机制方案
ping no reply
Additional Features for Scripting
qt-faststart 安装使用
bat 之 特殊字符&转义