Table of Contents

curl

automatically find out where/how to resume the transfer

curl -O -C -

post body from pipe

cat file.json | curl --request POST https://httpbin.org/post --data-binary @-

post form data

curl --request POST https://httpbin.org/post -F X=1

upload a file

curl -X POST https://httpbin.org/post -F 'file=@filename.txt'