Quote:
Originally Posted by Martijn
Note: I haven't tested this yet.
|
The script works fine, but only if you don't have white spaces in your filenames. I've made some small changes, and now it works:
Code:
#!/bin/bash
for i in "$@"; do
c=`pdffonts "$i" | grep -c "Type 3" `
if [ $c -ne 0 ]; then
echo $i
fi
done
This lists all PDFs with Type3 fonts: