From d910b5275a7a93316967c046cdcda3215afb6d1a Mon Sep 17 00:00:00 2001 From: mattn Date: Tue, 16 Sep 2014 10:55:33 +0900 Subject: [PATCH] Update README.md. Use curl -s to be quiet --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1f0b5ad..a424a51 100644 --- a/README.md +++ b/README.md @@ -22,13 +22,13 @@ Or if you can run `go get` to download via git. ## Quick start ```bash -$ curl http://www.pro-football-reference.com/years/2013/games.htm +$ curl -s http://www.pro-football-reference.com/years/2013/games.htm ``` Ew, HTML. Let's run that through some pup selectors: ```bash -$ curl http://www.pro-football-reference.com/years/2013/games.htm | \ +$ curl -s http://www.pro-football-reference.com/years/2013/games.htm | \ pup table#games 'a[href*=boxscores]' attr{href} ```