vote up 0 vote down star

Hi,

How can I upload files to a HTTPS site using CURL?

The site is also password protected.

What's the command line used to upload for that particular site?

flag

0% accept rate
Upload how? A custom Web form invoked with POST? HTTP PUT request? mat's solution will work only in the second case. – bortzmeyer Dec 14 '08 at 9:34

1 Answer

vote up 2 vote down

Yes, you can,

$ curl --user login:password --upload-file your.file.txt https://the.url/where/that/should/go

You may need to add --insecure if you don't want cURL to check the certificate chain.

link|flag
you can check the little box saying you accepted it if it works for you ;-) – mat Dec 12 '08 at 12:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.