msc-iksinski/helpers/pdf-to-plain-text.sh
2019-12-02 20:49:08 +01:00

4 lines
97 B
Bash
Executable File

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