pdfc
pdfc copied to clipboard
Batch script for Windows users
Hi.
This is a simple windows script that does batch compression jobs over all the pdfs in the dir and subdir. I saw that someone was talking about this. Because I had to do it for myself I thought to share it. I don't know.
Cheers, B0b
GOOD JOB!
I prefer to handle that separately...
I think the easiest is to run a simple bash command:
for file in *.pdf; do pdfc -c 3 $file --out opt_$file; done