"Curl"의 두 판 사이의 차이
ph
(새 문서: ==POST data== curl --data "param1=value1¶m2=value2" https://example.com/resource.cgi Multipart: curl --form "fileupload=@my-file.txt" https://example.com/resource.cgi 보통은,...) |
|||
6번째 줄: | 6번째 줄: | ||
curl -LOv | curl -LOv | ||
https://superuser.com/a/149335/108174 | https://superuser.com/a/149335/108174 | ||
+ | |||
+ | ==curl대체재== | ||
+ | [[https://httpie.org httpie]] |
2017년 6월 12일 (월) 16:16 판
POST data
curl --data "param1=value1¶m2=value2" https://example.com/resource.cgi
Multipart:
curl --form "fileupload=@my-file.txt" https://example.com/resource.cgi
보통은,
curl -LOv
https://superuser.com/a/149335/108174
curl대체재
[httpie]