Extract basic information from PHP pdf into Excel.
Run in the folder where PHP PDF (*.pdf) are (linux/Mac users)
$ for file in *.pdf; do pdftotext -raw "$file" "$file.txt"; done
$ for file in *.txt; do unix2dos "$file"; done
Install Mac
$ brew install poppler dos2unix
linux
$ apt-get install poppler-utils dos2unix
$ for /r %i in (*.pdf) do pdftotext -raw "%i" "%i.txt"
For Windows you can install it from http://www.foolabs.com/xpdf/download.html
$ PhpProcessor.exe path/to/folder/where/php-txt/files/are
- Open the
_output.txt - Select all text
CTRL+A - Copy
CTRL+C - Create new Excel workbook
- Paste
CTRL+V
Et Voila