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
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
Specifying minor TLS version when using curl - Super User Curl has options to control the TLS version used At the date of the last revision to this answer, if you want to specify that TLS 1 2 is used but not 1 1 or 1 3 etc, you need something like curl --tlsv1 2 --tls-max 1 2