msc-smolak/helpers/pdf-to-plain-text.sh
2020-01-26 19:01:08 +00:00

4 lines
97 B
Bash
Executable File

#!/bin/bash
pdftotext "$1" - | grep '[^[:space:]]' | egrep '[a-zA-Z]{2}' | perl -pne 's/\f//g;'