Skip to content

Instantly share code, notes, and snippets.

@paldhous
Created January 4, 2024 16:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save paldhous/a6590bfa130c5b2aea48330e58065aad to your computer and use it in GitHub Desktop.
Save paldhous/a6590bfa130c5b2aea48330e58065aad to your computer and use it in GitHub Desktop.
Bash script to search a folder for digital PDFs containing keyword/phrase
for file in *.pdf; do
pdftotext "$file" - | grep -q "keyword" && echo "$file"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment