Skip to content

Commit c1fae7e

Browse files
authored
Move single quote
1 parent 979cd9c commit c1fae7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/cookbook/scraping_dsl.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ To use a scraper from the command line, you can use the `scrape` command thusly:
8080
minet scrape scraper.yml -i report.csv > scraped.csv
8181
8282
# To scrape html file found by using a glob pattern:
83-
minet scrape scraper.yml 'files/**/*.html --glob' > scraped.csv
83+
minet scrape scraper.yml 'files/**/*.html' --glob > scraped.csv
8484
```
8585

8686
If you want to learn about glob patterns, [this](https://en.wikipedia.org/wiki/Glob_(programming)) wikipedia page can teach you how to build them. In our example `files/**/*.html` basically means we are searching for any file having the `.html` extension in any recursive subfolder found under `files/`.

0 commit comments

Comments
 (0)