Linux curl多参数且值有空格

场景:在Linux环境带多个参数访问,访问参数值有空格的情况;
原地址:curl http://localhost:8080/com.baidu.cn?requestId=23233&requestTime=2019-07-01 00:00:00&endTime=2019-07-02 00:00:00
结果:curl http://localhost:8080/com.baidu.cn?requestId\=23233\&requestTime\=2019-07-01%2000:00:00\&endTime\=2019-07-02%2000:00:00
备注:=,&符号前加转义字符,空格用%20代替

你可能感兴趣的:(Linux)