Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 03-Nov-2024 | - | ||||
.circleci/ | H | 04-Nov-2024 | - | |||
.github/ | H | 15-Oct-2024 | - | |||
CMake/ | H | 14-Nov-2024 | - | |||
LICENSES/ | H | 03-Jan-2023 | - | |||
docs/ | H | 18-Nov-2024 | - | |||
include/ | H | 01-Jul-2024 | - | |||
lib/ | H | 17-Nov-2024 | - | |||
m4/ | H | 14-Nov-2024 | - | |||
packages/ | H | 28-Jul-2024 | - | |||
plan9/ | H | 03-Jan-2023 | - | |||
projects/ | H | 22-Aug-2024 | - | |||
scripts/ | H | 13-Nov-2024 | - | |||
src/ | H | 17-Nov-2024 | - | |||
tests/ | H | 13-Nov-2024 | - | |||
winbuild/ | H | 01-Nov-2024 | - | |||
.dir-locals.el | H A D | 03-Jan-2023 | 1.3 KiB | 34 | 7 | |
.git-blame-ignore-revs | H A D | 03-Jan-2023 | 168 | 7 | 5 | |
.gitattributes | H A D | 02-Jul-2024 | 331 | 16 | 13 | |
.gitignore | H A D | 19-Sep-2024 | 735 | 69 | 67 | |
.mailmap | H A D | 24-Oct-2024 | 5.6 KiB | 115 | 114 | |
CHANGES.md | H A D | 01-Aug-2024 | 438 | 13 | 5 | |
CMakeLists.txt | H A D | Today | 82.3 KiB | 2,350 | 2,109 | |
COPYING | H A D | 08-Jan-2024 | 1.1 KiB | 23 | 17 | |
Dockerfile | H A D | 16-Nov-2024 | 1.7 KiB | 42 | 34 | |
GIT-INFO.md | H A D | 08-Jul-2024 | 922 | 33 | 21 | |
Makefile.am | H A D | 01-Nov-2024 | 8 KiB | 253 | 160 | |
Makefile.dist | H A D | 06-Sep-2024 | 1.8 KiB | 72 | 34 | |
README | H A D | 29-Sep-2022 | 1.6 KiB | 56 | 34 | |
README.md | H A D | 15-Oct-2024 | 2 KiB | 69 | 39 | |
RELEASE-NOTES | H A D | 17-Nov-2024 | 4.5 KiB | 115 | 98 | |
REUSE.toml | H A D | 10-Oct-2024 | 1.6 KiB | 58 | 54 | |
SECURITY.md | H A D | 22-Aug-2024 | 1.2 KiB | 30 | 17 | |
acinclude.m4 | H A D | 14-Nov-2024 | 45.5 KiB | 1,698 | 1,580 | |
appveyor.sh | H A D | 31-Oct-2024 | 5.7 KiB | 160 | 116 | |
appveyor.yml | H A D | 31-Oct-2024 | 7.3 KiB | 223 | 206 | |
buildconf | H A D | 03-Jan-2023 | 218 | 9 | 2 | |
buildconf.bat | H A D | 07-Mar-2024 | 6.2 KiB | 266 | 228 | |
configure.ac | H A D | 15-Nov-2024 | 160.8 KiB | 5,568 | 5,020 | |
curl-config.in | H A D | 14-Nov-2024 | 4.9 KiB | 196 | 135 | |
libcurl.pc.in | H A D | 14-Nov-2024 | 1.5 KiB | 42 | 39 | |
renovate.json | H A D | 23-Oct-2024 | 2.8 KiB | 101 | 100 |
README
1 _ _ ____ _ 2 ___| | | | _ \| | 3 / __| | | | |_) | | 4 | (__| |_| | _ <| |___ 5 \___|\___/|_| \_\_____| 6 7README 8 9 Curl is a command line tool for transferring data specified with URL 10 syntax. Find out how to use curl by reading the curl.1 man page or the 11 MANUAL document. Find out how to install Curl by reading the INSTALL 12 document. 13 14 libcurl is the library curl is using to do its job. It is readily 15 available to be used by your software. Read the libcurl.3 man page to 16 learn how. 17 18 You find answers to the most frequent questions we get in the FAQ document. 19 20 Study the COPYING file for distribution terms. 21 22 Those documents and more can be found in the docs/ directory. 23 24CONTACT 25 26 If you have problems, questions, ideas or suggestions, please contact us 27 by posting to a suitable mailing list. See https://curl.se/mail/ 28 29 All contributors to the project are listed in the THANKS document. 30 31WEBSITE 32 33 Visit the curl website for the latest news and downloads: 34 35 https://curl.se/ 36 37GIT 38 39 To download the latest source code off the GIT server, do this: 40 41 git clone https://github.com/curl/curl.git 42 43 (you will get a directory named curl created, filled with the source code) 44 45SECURITY PROBLEMS 46 47 Report suspected security problems via our HackerOne page and not in public. 48 49 https://hackerone.com/curl 50 51NOTICE 52 53 Curl contains pieces of source code that is Copyright (c) 1998, 1999 54 Kungliga Tekniska Högskolan. This notice is included here to comply with the 55 distribution terms. 56
README.md
1<!-- 2Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al. 3 4SPDX-License-Identifier: curl 5--> 6 7# [![curl logo](https://curl.se/logo/curl-logo.svg)](https://curl.se/) 8 9Curl is a command-line tool for transferring data specified with URL syntax. 10Learn how to use curl by reading [the 11manpage](https://curl.se/docs/manpage.html) or [everything 12curl](https://everything.curl.dev/). 13 14Find out how to install curl by reading [the INSTALL 15document](https://curl.se/docs/install.html). 16 17libcurl is the library curl is using to do its job. It is readily available to 18be used by your software. Read [the libcurl 19manpage](https://curl.se/libcurl/c/libcurl.html) to learn how. 20 21## Open Source 22 23curl is Open Source and is distributed under an MIT-like 24[license](https://curl.se/docs/copyright.html). 25 26## Contact 27 28Contact us on a suitable [mailing list](https://curl.se/mail/) or 29use GitHub [issues](https://github.com/curl/curl/issues)/ 30[pull requests](https://github.com/curl/curl/pulls)/ 31[discussions](https://github.com/curl/curl/discussions). 32 33All contributors to the project are listed in [the THANKS 34document](https://curl.se/docs/thanks.html). 35 36## Commercial support 37 38For commercial support, maybe private and dedicated help with your problems or 39applications using (lib)curl visit [the support page](https://curl.se/support.html). 40 41## Website 42 43Visit the [curl website](https://curl.se/) for the latest news and downloads. 44 45## Source code 46 47Download the latest source from the Git server: 48 49 git clone https://github.com/curl/curl.git 50 51## Security problems 52 53Report suspected security problems via [our HackerOne 54page](https://hackerone.com/curl) and not in public. 55 56## Notice 57 58Curl contains pieces of source code that is Copyright (c) 1998, 1999 Kungliga 59Tekniska Högskolan. This notice is included here to comply with the 60distribution terms. 61 62## Backers 63 64Thank you to all our backers [Become a backer](https://opencollective.com/curl#section-contribute). 65 66## Sponsors 67 68Support this project by becoming a [sponsor](https://curl.se/sponsors.html). 69