curl报错 curl: option --form: is badly used here

沈嘉瑞
2023-12-01

执行curl上传文件

curl --location --request POST 'http://192.168.65.220:19999/upfile/' \
--form '=@"/C:/Users/Administrator/Downloads/hemleen-lua-resty-shell-master.zip"'

报错option --form: is badly used here

Warning: Illegally formatted input field!
curl: option --form: is badly used here
curl: try 'curl --help' or 'curl --manual' for more information

原因 curl 版本太低不支持 --form参数

–form 参数改为 -F 就可以 了

修改后执行

curl --location --request POST http://192.168.65.220:19999/upfile/ -F file=@dist.zip
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed

  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
 68 8602k    0     0   68 5904k      0  11.6M --:--:-- --:--:-- --:--:-- 11.6M
100 8602k    0    13  100 8602k     16  10.9M --:--:-- --:--:-- --:--:-- 10.9M
save file ok

CSDN_码404:curl报错 curl: option --form: is badly used here

 类似资料: