Skip to content

Instantly share code, notes, and snippets.

@infojunkie
Created December 14, 2021 22:52
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 infojunkie/1939ee4761f281921ea101fac888f748 to your computer and use it in GitHub Desktop.
Save infojunkie/1939ee4761f281921ea101fac888f748 to your computer and use it in GitHub Desktop.
Count words in a list of PDF files
#!/bin/bash
find "$@" -name '*.pdf' | while read f; do pdftotext "$f" - | wc -w; done | paste -sd+ | bc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment