in terminal:
pdftotext filename.pdf -|grep -v grep|grep AAAAA -A 1000|tr -d '\014'|sed -e '/^$/d'|base64 -d > test.zip
OK, it takes a pdf file and converts it to text. but after that there are a bunch of greps that are throwing me. I get that it searches for AAAAA but also do not understand what follows.
tnx.
pdftotext filename.pdf -|grep -v grep|grep AAAAA -A 1000|tr -d '\014'|sed -e '/^$/d'|base64 -d > test.zip
OK, it takes a pdf file and converts it to text. but after that there are a bunch of greps that are throwing me. I get that it searches for AAAAA but also do not understand what follows.
tnx.