2022-05-17 17:16:50 +08:00
<!--
2022-06-14 16:22:56 +08:00
Copyright (C) 1998 - 2022 Daniel Stenberg, < daniel @ haxx . se > , et al.
2022-05-17 17:16:50 +08:00
2016-05-30 16:46:35 +08:00
SPDX-License-Identifier: curl
2022-05-17 17:16:50 +08:00
-->
2022-10-10 01:33:21 +08:00
# [![curl logo](https://curl.se/logo/curl-logo.svg)](https://curl.se/)
2017-11-12 02:16:58 +08:00
2022-09-21 05:30:19 +08:00
[![OpenSSF Best Practices ](https://bestpractices.coreinfrastructure.org/projects/63/badge )](https://bestpractices.coreinfrastructure.org/projects/63)
2017-03-10 21:50:29 +08:00
[![Coverity passed ](https://scan.coverity.com/projects/curl/badge.svg )](https://scan.coverity.com/projects/curl)
2018-08-24 19:23:31 +08:00
[![AppVeyor Build Status ](https://ci.appveyor.com/api/projects/status/l1vv31029huhf4g4?svg=true )](https://ci.appveyor.com/project/curlorg/curl)
2020-03-04 00:11:26 +08:00
[![Azure DevOps Build Status ](https://dev.azure.com/daniel0244/curl/_apis/build/status/curl.curl?branchName=master )](https://dev.azure.com/daniel0244/curl/_build/latest?definitionId=1& branchName=master)
2019-02-09 17:04:39 +08:00
[![Cirrus Build Status ](https://api.cirrus-ci.com/github/curl/curl.svg?branch=master )](https://cirrus-ci.com/github/curl/curl)
2022-09-18 03:53:50 +08:00
[![GitHub Actions Linux Build Status ](https://github.com/curl/curl/actions/workflows/linux.yml/badge.svg )](https://github.com/curl/curl/actions/workflows/linux.yml)
[![GitHub Actions macOS Build Status ](https://github.com/curl/curl/actions/workflows/macos.yml/badge.svg )](https://github.com/curl/curl/actions/workflows/macos.yml)
2018-08-09 22:20:34 +08:00
[![Backers on Open Collective ](https://opencollective.com/curl/backers/badge.svg )](#backers)
[![Sponsors on Open Collective ](https://opencollective.com/curl/sponsors/badge.svg )](#sponsors)
[![Language Grade: C/C++ ](https://img.shields.io/lgtm/grade/cpp/g/curl/curl.svg?logo=lgtm&logoWidth=18 )](https://lgtm.com/projects/g/curl/curl/context:cpp)
2019-09-19 20:00:51 +08:00
[![Fuzzing Status ](https://oss-fuzz-build-logs.storage.googleapis.com/badges/curl.svg )](https://bugs.chromium.org/p/oss-fuzz/issues/list?sort=-opened& can=1& q=proj:curl)
2022-06-14 14:29:31 +08:00
[![REUSE status ](https://api.reuse.software/badge/github.com/curl/curl )](https://api.reuse.software/info/github.com/curl/curl)
2016-03-07 18:03:55 +08:00
2016-05-30 16:46:35 +08:00
Curl is a command-line tool for transferring data specified with URL
2016-03-07 18:09:56 +08:00
syntax. Find out how to use curl by reading [the curl.1 man
2020-11-04 21:02:01 +08:00
page](https://curl.se/docs/manpage.html) or [the MANUAL
document](https://curl.se/docs/manual.html). Find out how to install Curl
by reading [the INSTALL document ](https://curl.se/docs/install.html ).
2016-03-07 18:03:55 +08:00
libcurl is the library curl is using to do its job. It is readily available to
2016-03-07 18:09:56 +08:00
be used by your software. Read [the libcurl.3 man
2021-11-26 15:46:59 +08:00
page](https://curl.se/libcurl/c/libcurl.html) to learn how.
2016-03-07 18:03:55 +08:00
2019-09-27 03:37:24 +08:00
You can find answers to the most frequent questions we get in [the FAQ
2020-11-04 21:02:01 +08:00
document](https://curl.se/docs/faq.html).
2016-03-07 18:03:55 +08:00
2020-11-04 21:02:01 +08:00
Study [the COPYING file ](https://curl.se/docs/copyright.html ) for
2020-09-11 23:17:54 +08:00
distribution terms.
2016-03-07 18:03:55 +08:00
2016-05-30 16:46:35 +08:00
## Contact
2016-03-07 18:03:55 +08:00
If you have problems, questions, ideas or suggestions, please contact us by
2020-11-04 21:02:01 +08:00
posting to a suitable [mailing list ](https://curl.se/mail/ ).
2016-03-07 18:03:55 +08:00
2016-03-07 18:09:56 +08:00
All contributors to the project are listed in [the THANKS
2020-11-04 21:02:01 +08:00
document](https://curl.se/docs/thanks.html).
2016-03-07 18:03:55 +08:00
2021-04-23 14:59:08 +08:00
## Commercial support
For commercial support, maybe private and dedicated help with your problems or
2021-12-26 06:47:02 +08:00
applications using (lib)curl visit [the support page ](https://curl.se/support.html ).
2021-04-23 14:59:08 +08:00
2016-05-30 16:46:35 +08:00
## Website
2016-03-07 18:03:55 +08:00
2020-11-04 21:02:01 +08:00
Visit the [curl website ](https://curl.se/ ) for the latest news and
2016-03-07 18:09:56 +08:00
downloads.
2016-03-07 18:03:55 +08:00
2016-05-30 16:46:35 +08:00
## Git
2016-03-07 18:03:55 +08:00
2022-09-28 00:53:54 +08:00
To download the latest source from the Git server, do this:
2016-03-07 18:03:55 +08:00
git clone https://github.com/curl/curl.git
2021-10-31 23:34:44 +08:00
(you will get a directory named curl created, filled with the source code)
2016-03-07 18:03:55 +08:00
2019-04-20 18:19:47 +08:00
## Security problems
2019-04-29 05:14:23 +08:00
Report suspected security problems via [our HackerOne
2022-09-19 23:30:30 +08:00
page](https://hackerone.com/curl) and not in public.
2019-04-20 18:19:47 +08:00
2016-05-30 16:46:35 +08:00
## Notice
2016-03-07 18:03:55 +08:00
Curl contains pieces of source code that is Copyright (c) 1998, 1999 Kungliga
Tekniska Högskolan. This notice is included here to comply with the
distribution terms.
2018-04-12 13:40:17 +08:00
## Backers
Thank you to all our backers! 🙏 [[Become a backer ](https://opencollective.com/curl#backer )]
2022-02-14 16:48:42 +08:00
[![Open Collective Backers ](https://opencollective.com/curl/backers.svg?width=890 )](https://opencollective.com/curl#backers)
2018-04-12 13:40:17 +08:00
## Sponsors
Support this project by becoming a sponsor. Your logo will show up here with a
2022-02-14 16:48:42 +08:00
link to your website. [[Become a sponsor ](https://opencollective.com/curl#sponsor )]
2022-02-21 17:19:27 +08:00
<!-- markdown - link - check - disable -->
2022-02-14 16:48:42 +08:00
[![Open Collective Sponsor 0 ](https://opencollective.com/curl/sponsor/0/avatar.svg )](https://opencollective.com/curl/sponsor/0/website)
[![Open Collective Sponsor 1 ](https://opencollective.com/curl/sponsor/1/avatar.svg )](https://opencollective.com/curl/sponsor/1/website)
[![Open Collective Sponsor 2 ](https://opencollective.com/curl/sponsor/2/avatar.svg )](https://opencollective.com/curl/sponsor/2/website)
[![Open Collective Sponsor 3 ](https://opencollective.com/curl/sponsor/3/avatar.svg )](https://opencollective.com/curl/sponsor/3/website)
[![Open Collective Sponsor 4 ](https://opencollective.com/curl/sponsor/4/avatar.svg )](https://opencollective.com/curl/sponsor/4/website)
[![Open Collective Sponsor 5 ](https://opencollective.com/curl/sponsor/5/avatar.svg )](https://opencollective.com/curl/sponsor/5/website)
[![Open Collective Sponsor 6 ](https://opencollective.com/curl/sponsor/6/avatar.svg )](https://opencollective.com/curl/sponsor/6/website)
[![Open Collective Sponsor 7 ](https://opencollective.com/curl/sponsor/7/avatar.svg )](https://opencollective.com/curl/sponsor/7/website)
[![Open Collective Sponsor 8 ](https://opencollective.com/curl/sponsor/8/avatar.svg )](https://opencollective.com/curl/sponsor/8/website)
[![Open Collective Sponsor 9 ](https://opencollective.com/curl/sponsor/9/avatar.svg )](https://opencollective.com/curl/sponsor/9/website)