I'm on mobile, otherwise I'd do it, but can you grep through all documents and create a word list sorted by how many times a word appears? ( sort | uniq -c | sort -n ) It might be an easy way to find names if not redacted. You could also look for sentences that have capitalized words in the middle to find names and places.
I'm on mobile, otherwise I'd do it, but can you grep through all documents and create a word list sorted by how many times a word appears? ( sort | uniq -c | sort -n ) It might be an easy way to find names if not redacted. You could also look for sentences that have capitalized words in the middle to find names and places.
Extracting all of the text from the PDFs is a bit outside of my wheelhouse, but I might take a crack at it later on