2013-12-08 08:56:16 +00:00
|
|
|
# curl
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
> Transfers data from or to a server.
|
|
|
|
> Supports most protocols including HTTP, FTP, POP.
|
2013-12-08 08:56:16 +00:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Download a URL to a file:
|
A bunch of new pages:
common/: dig, gzip, rm, sort, zfs, zpool
linux/: apt-get, shutdown
osx/: airport, caffeinate, diskutil, networksetup open, pgrep, qlmanage, say, shutdown, sysctl, system_profiler
Edits to existing pages:
curl: Added simple download example
find: Added iname and size exmaples
grep: Edited -c description
ps: Added wide lines example
ssh: edited -D description, added simple port forwarding example
unzip: added list option
2014-02-10 20:36:05 +00:00
|
|
|
|
2016-01-06 11:05:23 +00:00
|
|
|
`curl "{{URL}}" -o {{filename}}`
|
A bunch of new pages:
common/: dig, gzip, rm, sort, zfs, zpool
linux/: apt-get, shutdown
osx/: airport, caffeinate, diskutil, networksetup open, pgrep, qlmanage, say, shutdown, sysctl, system_profiler
Edits to existing pages:
curl: Added simple download example
find: Added iname and size exmaples
grep: Edited -c description
ps: Added wide lines example
ssh: edited -D description, added simple port forwarding example
unzip: added list option
2014-02-10 20:36:05 +00:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Send form-encoded data:
|
2013-12-08 08:56:16 +00:00
|
|
|
|
2013-12-09 11:12:16 +00:00
|
|
|
`curl --data {{name=bob}} {{http://localhost/form}}`
|
2013-12-08 08:56:16 +00:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Send JSON data:
|
2013-12-08 08:56:16 +00:00
|
|
|
|
2013-12-09 11:12:16 +00:00
|
|
|
`curl -X POST -H "Content-Type: application/json" -d {{'{"name":"bob"}'}} {{http://localhost/login}}`
|
2013-12-08 08:56:16 +00:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Specify an HTTP method:
|
2013-12-08 08:56:16 +00:00
|
|
|
|
2013-12-09 11:12:16 +00:00
|
|
|
`curl -X {{DELETE}} {{http://localhost/item/123}}`
|
2013-12-08 08:56:16 +00:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Head request:
|
2013-12-08 08:56:16 +00:00
|
|
|
|
2016-01-22 23:33:32 +00:00
|
|
|
`curl --head {{http://localhost}}`
|
2014-03-11 15:01:45 +00:00
|
|
|
|
2016-01-12 19:33:40 +00:00
|
|
|
- Include an extra header:
|
2016-01-12 19:24:22 +00:00
|
|
|
|
2016-01-19 18:09:42 +00:00
|
|
|
`curl -H "{{X-MyHeader: 123}}" {{http://localhost}}`
|
2016-01-12 19:24:22 +00:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Pass a user name and password for server authentication:
|
2014-03-11 15:01:45 +00:00
|
|
|
|
|
|
|
`curl -u myusername:mypassword {{http://localhost}}`
|