1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 22:22:18 +02:00

Clarify recursive functionality.

This commit is contained in:
Juan Leñero 2017-10-25 18:34:41 -05:00 committed by GitHub
parent 16ee3022b0
commit b51dab155d

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}}'`