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?
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?
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.