From ae1a06e8ed5471ced284ce4fff03c8d1c6a281d5 Mon Sep 17 00:00:00 2001 From: Peter van Dijk Date: Sun, 14 Sep 2014 11:09:11 +0200 Subject: [PATCH] Quote possible shell wildcard Because of this: ``` $ echo a[href*=boxscores] a[href*=boxscores] $ touch ah $ echo a[href*=boxscores] ah ``` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index eec506a..367a97c 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ Ew, HTML. Let's run that through some pup selectors: ```bash $ curl 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} ``` ## Basic Usage