1
0
mirror of https://github.com/ericchiang/pup synced 2025-01-15 10:11:16 +00:00

Update README.md. Use curl -s to be quiet

This commit is contained in:
mattn 2014-09-16 10:55:33 +09:00
parent 10f5586835
commit d910b5275a

View File

@ -22,13 +22,13 @@ Or if you can run `go get` to download via git.
## Quick start ## Quick start
```bash ```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: Ew, HTML. Let's run that through some pup selectors:
```bash ```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} pup table#games 'a[href*=boxscores]' attr{href}
``` ```