From da10a8fa0d81190031e0395d0087ef9ed4b41474 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Le=C3=B1ero?= Date: Wed, 1 Nov 2017 17:27:26 -0500 Subject: [PATCH] Update pdfgrep.md --- pages/linux/pdfgrep.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pages/linux/pdfgrep.md b/pages/linux/pdfgrep.md index b1a24817d2..a29d8ef161 100644 --- a/pages/linux/pdfgrep.md +++ b/pages/linux/pdfgrep.md @@ -10,14 +10,14 @@ `pdfgrep --with-filename --page-number {{pattern}} {{file.pdf}}` -- Find the first 3 lines that begin with foo case insensitive: +- Do a case insensitive search for lines that begin with "foo" and return the first 3 matches. `pdfgrep --max-count {{3}} --ignore-case {{'^foo'}} {{file.pdf}}` -- Find pattern in files with a .pdf extension in the current directory recusively: +- Find pattern in files with a .pdf extension in the current directory recursively: `pdfgrep --recursive {{pattern}}` -- Find pattern recursively on files that match a specific glob: +- Find pattern on files that match a specific glob in the current directory recursively: `pdfgrep --recursive --include {{'*book.pdf'}} {{pattern}}`