Skip to content

Instantly share code, notes, and snippets.

@kenorb
Created January 27, 2024 14:47
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 kenorb/9f12941dda163b11a140b91634a8a352 to your computer and use it in GitHub Desktop.
Save kenorb/9f12941dda163b11a140b91634a8a352 to your computer and use it in GitHub Desktop.
pdftotext script
sudo apt install poppler-utils poppler-data
find . -iname "*.pdf" -print -execdir bash -c '! test -f "{}".txt && pdftotext "{}" "{}".txt' ';'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment