finos / JCurl

JSON-aware curl (1) in Java
Apache License 2.0
27 stars 24 forks source link

Prints extra newlines #23

Open yschimke opened 6 years ago

yschimke commented 6 years ago

JCurl

09:31 $ jcurl https://graph.facebook.com/robots.txt

User-agent: *
Disallow: /

Curl

09:32 $ curl https://graph.facebook.com/robots.txt
User-agent: *
Disallow: /✔ ~/workspace/JCurl [brew_install L|✔]
yschimke commented 6 years ago
09:39 $ curl -s https://graph.facebook.com/robots.txt 2>&1 | wc -c
      25
09:39 $ jcurl https://graph.facebook.com/robots.txt 2>&1 | wc -c
      27