我正在尝试卷曲网址
http://whatever/[a] bc.vmd
由于[a]之后有空格,curl报告错误:/
我试过%20喜欢
http://whatever/[a]%20bc.vmd #curl: (3) [globbing] error: bad range specification after pos 51
我如何克服这个?
谢谢,
维克。
答案 0 :(得分:1)
如果您在命令行中使用它,只需将URL包装在double qoutes("
)之间。也可以使用[ ]
转义\
个字符。
curl "http://whatever/\[a\] bc.vmd"
如果您使用的是代码,那么encode网址的uri部分。例如,空格将为%20
http://whatever/%5Ba%5D%20bc.vmd