| Command | Description |
|---|---|
| curl -h | help menu |
| curl <Target address> | Basic GET method |
| curl -s -O <directory> | Download file |
| -k | Skip HTTPS |
| ~~ -v | Print full HTTP details |
| -I ~~ | Send HEAD request |
| -i ~~ | Print response headers and response body |
| ~~ -A 'Mozilla/5.0' | Set User-Agent header |
| -u <id>:<pw> ~~ | Set HTTP basic authorization credentials |
| http://<id>:<pw>@~~ | Same above |
| -H '<Header>: <Value>' | Set request header |
| -X | Send Other HTTP Method(DELETE, POST, ...) |
| -b '<cookie_parameter>:' ~~ | Set request cookies |
| |jq | read data in JSON form |
| -s | silent mode |