Clarify recursive functionality.

coverage
Juan Leñero 2017-10-25 18:34:41 -05:00 committed by GitHub
parent 16ee3022b0
commit b51dab155d
1 changed files with 6 additions and 2 deletions

View File

@ -14,6 +14,10 @@
`pdfgrep --max-count {{3}} --ignore-case {{'^foo'}} {{file.pdf}}`
- Find pattern in pdf files under the current directory recusively:
- Find pattern in files with a .pdf extension in the current directory recusively:
`pdfgrep --recursive --include {{'*.pdf'}} {{pattern}}`
`pdfgrep --recursive {{pattern}}`
- Find pattern recursively on files that match a specific glob:
`pdfgrep --recursive --include {{'*book.pdf'}} {{pattern}}'`