学习笔记之curl

curl

  • https://curl.haxx.se/
  • command line tool and library for transferring data with URLs

cURL - Wikipedia

  • https://en.wikipedia.org/wiki/CURL
  • cURL (pronounced 'curl'[4]) 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 URL",[5] which was first released in 1997.[6]
  • $ curl www.example.com
  • $ curl -o example.html www.example.com

GitHub - curl/curl: A command line tool and library for transferring data with URL syntax, supporting HTTP, HTTPS, FTP, FTPS, GOPHER, TFTP, SCP, SFTP, SMB, TELNET, DICT, LDAP, LDAPS, MQTT, FILE, IMAP, SMTP, POP3, RTSP and RTMP. libcurl offers a myriad of powerful features

  • https://github.com/curl/curl
原文地址:https://www.cnblogs.com/pegasus923/p/13845451.html