Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/curl/curl-cheat-sheet
A single page document with the most important curl options for HTTP explained
https://github.com/curl/curl-cheat-sheet
cheatsheet curl documentation http
Last synced: about 1 month ago
JSON representation
A single page document with the most important curl options for HTTP explained
- Host: GitHub
- URL: https://github.com/curl/curl-cheat-sheet
- Owner: curl
- Created: 2015-09-15T07:52:18.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2022-09-19T11:32:43.000Z (about 2 years ago)
- Last Synced: 2024-04-14T00:33:47.699Z (7 months ago)
- Topics: cheatsheet, curl, documentation, http
- Homepage: https://curl.github.io/curl-cheat-sheet/http-sheet.html
- Size: 40 KB
- Stars: 344
- Watchers: 21
- Forks: 38
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# curl HTTP cheat sheet
[HTML version here](https://curl.github.io/curl-cheat-sheet/http-sheet.html)
## Markdown attempt
| Verbose | Hide progress | extra info | Write output | Timeout
|---------------------------|---------------------------------|-------------------|------------------|--------------
| -v
--trace-ascii file | -s | -w format | -O
-o file | -m secs
| **POST** | **multipart** | **PUT** | **HEAD** | **custom**
| -d string
-d @file | -F name=value
-F name=@file | -T file | -I | -X METHOD
| **Basic auth** | **read cookies** | **write cookies** | **send cookies** | **user-agent**
| -u user:password | -b | -c | -b "c=1; d=2" | -A string
| **Use proxy** | **Headers, add/remove** | **follow redirs** | **gzip** | **insecure**
| -x host:port | -H "name: value"
-H name: | -L | --compressed | -k