What is `curl -o-`? - Unix Linux Stack Exchange (curl -o- and curl -o - act the same ) Explicitly sending the output to stdout seems a bit redundant, since that's the default anyway However, the man page does mention using multiple -o options for multiple URLs to download, so it might be more useful in that context
What is the meaning of curl -k -i -X in Linux? - Unix Linux Stack . . . This option allows curl to proceed and operate even for server connections otherwise considered insecure The server connection is verified by making sure the server's certificate contains the right name and verifies successfully using the cert store
Return status code and body in curl - Unix Linux Stack Exchange Is it possible to use curl to call a REST service (POST method) and get: The HTTP status code The response body Other information like headers, methods, etc are not relevant for my use case and
Health check of web page using curl - Unix Linux Stack Exchange I'd like to do a health check of a service by calling a specific url on it Feels like the simplest solution would be to use cron to do the check every minute or so In case of errors, cron sends m
Getting curl to output HTTP status code? - Super User I'm using curl at the command line on Linux to issue HTTP requests The response bodies are printed to standard out, which is fine, but I can't see from the man page how to get curl to print the
How to trust self-signed certificate in cURL command line? 1 If you save off the self-signed crt from your server, you can pass it to curl via "--cacert self-signed crt" and curl will validate the certificate of your server using the given CA Cert