msc-smolak/helpers/pdf-to-plain-text.sh

4 lines
97 B
Bash
Raw Permalink Normal View History

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