Differences
This shows you the differences between two versions of the page.
— | curl [2015/11/24 17:04] (current) – created - external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== curl ====== | ||
+ | * [[http:// | ||
+ | |||
+ | ** Send referrer ** | ||
+ | |||
+ | < | ||
+ | curl -e " | ||
+ | </ | ||
+ | |||
+ | ** Display HTTP headers only ** | ||
+ | |||
+ | < | ||
+ | curl -I http:// | ||
+ | </ | ||
+ | |||
+ | ** Don't display download stats ** | ||
+ | |||
+ | < | ||
+ | curl -s http:// | ||
+ | </ | ||
+ | |||
+ | ** Silently fail if HTTP error is returned ** | ||
+ | |||
+ | < | ||
+ | curl -f http:// | ||
+ | </ |