Software:cURL

From HandWiki
Short description: Free URL data transfer client software

curl
Curl-logo.svg
CURL downloading CURL screenshot.png
Example output from curl -O
Original author(s)Daniel Stenberg[1]
Developer(s)Contributors to the curl project
Initial release1996; 28 years ago (1996)[2]
Written inC
PlatformCross-platform
Typeweb client (supports e.g. HTTPS, and FTP)
Licensecurl license[3][4] (inspired on the MIT License[4])
Website{{{1}}}

cURL (pronounced like "curl",[5] /kɜːrl/) is a computer software project providing a library (libcurl) and command-line tool (curl) for transferring data using various network protocols. The name stands for "Client for URL".[6]

History

curl was first released in 1996.[7] It was originally named httpget and then became urlget before adopting the current name of curl[8][9] The original author and lead developer is the Swedish developer Daniel Stenberg, who created curl because he wanted to automate the fetching of currency exchange rates for IRC users.[2]

libcurl

libcurl is a free client-side URL transfer library,[10] supporting cookies, DICT, FTP, FTPS, Gopher, HTTP/1[11] (with HTTP/2 and HTTP/3 support), HTTP POST, HTTP PUT, HTTP proxy tunneling, HTTPS, IMAP, Kerberos, LDAP, MQTT, POP3, RTSP, RTMP, SCP, SMTP, and SMB. The library supports the file URI scheme, SFTP, Telnet, TFTP, file transfer resume, FTP uploading, HTTP form-based upload, HTTPS certificates, LDAPS, proxies, and user-plus-password authentication.[12]

The libcurl library is portable. It builds and works identically on many platforms, including AIX, AmigaOS, Android,[citation needed] BeOS, BlackBerry Tablet OS and BlackBerry 10,[13] OpenVMS, Darwin, DOS, FreeBSD, HP-UX, HURD, iOS, IRIX, Linux, macOS, NetBSD, NetWare, OpenBSD, OS/2, QNX Neutrino, RISC OS, Solaris, Symbian, Tru64, Ultrix, UnixWare, and Microsoft Windows.[14]

The libcurl library is free, thread-safe and IPv6 compatible. Bindings are available for more than 50 languages, including C/C++, Java, Julia (is bundled with), PHP and Python.[15]

The libcurl library supports GnuTLS, mbed TLS, NSS, gskit on IBM i, SChannel on Windows, Secure Transport on macOS and iOS, SSL/TLS through OpenSSL, BoringSSL, libreSSL, AmiSSL, wolfSSL, BearSSL and rustls.[16]

curl

curl is a command-line tool for getting or sending data including files using URL syntax. Since curl uses libcurl, it supports every protocol libcurl supports.[12]

curl supports HTTPS and performs SSL certificate verification by default when a secure protocol is specified such as HTTPS. When curl connects to a remote server via HTTPS, it will obtain the remote server certificate, then check against its CA certificate store the validity of the remote server to ensure the remote server is the one it claims to be. Some curl packages are bundled with CA certificate store file. There are several options to specify a CA certificate such as --cacert and --capath. The --cacert option can be used to specify the location of the CA certificate store file. In the Windows platform, if a CA certificate file is not specified, curl will look for a CA certificate file name “curl-ca-bundle.crt” in the following order:

  1. Directory where the curl program is located.
  2. Current working directory.
  3. Windows system directory.
  4. Windows directory.
  5. Directories specified in the %PATH% environment variables.[17]

curl will return an error message if the remote server is using a self-signed certificate, or if the remote server certificate is not signed by a CA listed in the CA cert file. -k or --insecure option can be used to skip certificate verification. Alternatively, if the remote server is trusted, the remote server CA certificate can be added to the CA certificate store file.

Examples

Basic use of curl involves simply typing curl at the command line, followed by the URL of the output to retrieve:

$ curl www.example.com

curl defaults to displaying the output it retrieves to the standard output specified on the system (usually the terminal window). So running the command above would, on most systems, display the www.example.com source-code in the terminal window. The -o flag can be used to store the output in a file instead:

$ curl -o example.html www.example.com

More options that change the tool's behavior are available.

See also

  • curl-loader – an open-source testing tool based on curl
  • libwww – an early library that comes with a command line interface
  • PowerShell – the iwr (Invoke-WebRequest) Windows PowerShell had functionality similar to curl; class Web-client too.[18]
  • Web crawler – an internet bot that can crawl the web
  • Wget – similar command-line tool with no associated library but capable of recursive downloading

References

  1. Stenberg, Daniel (20 March 2015). "curl, 17 years old today". https://daniel.haxx.se/blog/2015/03/20/curl-17-years-old-today/. 
  2. 2.0 2.1 "History of curl - How curl Became Like This". curl. https://curl.se/docs/history.html. "Daniel simply adopted an existing command-line open-source tool, httpget, that Brazilian Rafael Sagula had written and recently release version 0.1 of. After a few minor adjustments, it did just what he needed. [...] HttpGet 1.0 was released on April 8th 1997 with brand new HTTP proxy support. [...] Stenberg was spending time writing an IRC bot for an Amiga related channel on EFnet. He then came up with the idea to make currency-exchange calculations available to Internet Relay Chat (IRC) users." 
  3. "curl License". https://spdx.org/licenses/curl.html. 
  4. 4.0 4.1 "curl - copyright". https://curl.se/docs/copyright.html. 
  5. "curl - Frequently Asked Questions". https://curl.se/docs/faq.html. 
  6. Stenberg, Daniel. "Origin of the name" (in en). https://everything.curl.dev/project/name. 
  7. "History of curl" (in en-US). fossies.org. https://curl.se/docs/history.html. 
  8. "Changelog" (in en). 2020-01-04. https://curl.se/changes.html#4_0. "The first curl release. The tool was named urlget before this. And httpget before that." 
  9. Stenberg, Daniel (2020-01-04). "Restored complete curl changelog" (html). https://daniel.haxx.se/blog/2020/01/04/restored-complete-curl-changelog/. 
  10. Jones, M. Tim (8 September 2009). "Conversing through the Internet with cURL and libcurl - Using libcurl with C and Python". https://www.ibm.com/developerworks/library/os-curl/index.html. 
  11. Stenberg, Daniel (5 August 2019). "http09: disable HTTP/0.9 by default in both tool and library" (html). https://github.com/curl/curl/pull/4191/commits/2723285b39a19151808c92efa859d3afae46898e. "As the plan has been laid out in Deprecated. Update docs accordingly and verify in test 1174." 
  12. 12.0 12.1 "curl - How To Use". https://curl.se/docs/manpage.html. 
  13. "Open Source Components for the Native SDK for BlackBerry Tablet OS". https://blackberry.github.com/ndk/components.html. 
  14. "Tar and Curl Come to Windows!". March 22, 2019. https://techcommunity.microsoft.com/t5/containers/tar-and-curl-come-to-windows/ba-p/382409. 
  15. "libcurl bindings". curl.se. https://curl.se/libcurl/bindings.html. 
  16. "curl supports rustls | daniel.haxx.se" (in en-US). 9 February 2021. https://daniel.haxx.se/blog/2021/02/09/curl-supports-rustls/. 
  17. "curl - SSL CA Certificates". https://curl.se/docs/sslcerts.html. 
  18. Del, Ryan (2018-03-02). "Comandi equivalenti a cURL e Wget per Windows command-line con Powershell" (in it) (html). https://www.ryadel.com/curl-wget-comandi-equivalenti-alternative-windows-command-line-prompt-powershell/. "Per emulare il comportamento del comando Linux cURL, è sufficiente creare un file cURL.ps1 contenente la seguente riga di codice" 

External links