From e0e945ff250405159f25e59af19cd124894c1f33 Mon Sep 17 00:00:00 2001 From: Daniel Jakots Date: Wed, 8 Mar 2017 14:22:28 -0500 Subject: [PATCH] afficher le header ET le reste --- TipsCurl.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/TipsCurl.md b/TipsCurl.md index 35f8f652..d1b2f10a 100644 --- a/TipsCurl.md +++ b/TipsCurl.md @@ -26,8 +26,14 @@ Afficher uniquement le header : $ curl -I www.example.com ~~~ +Afficher le header et le reste : + +~~~ +$ curl -i www.example.com +~~~ + Obtenir le contenu gzipƩ : ~~~ $ curl www.example.com -H 'Accept-Encoding:gzip, deflate' -~~~ \ No newline at end of file +~~~