Linux curl Command Tutorial with Examples

Linux curl Command Tutorial with Examples

A curl command is a tool used to transfer data between different hosts. These hosts are generally called servers where different protocol types are supported by curl. The curl supports protocol types like FTP, FTPS, HTTP, HTTPS, IMAP, SCP, SFTP, SMB, TFTP, etc. Interestingly email protocols lşike IMAP, IMAPS, POP3, etc. are supported by the … Read more

How To Ignore and Disable SSL/TLS Certificates Check with Curl Command?

How To Ignore and Disable SSL/TLS Certificates Check with Curl Command?

SSL/TLS is used to encrypt and make secure HTTPS connections. While using the HTTPS web pages with the curl command you may get some SSL/TLS related warnings or errors. Experienced users generally look for –no-check-certificate option which is provided for wget to skip SSL/TLS certification checks. The curl command provides the -k or –insecure options … Read more