File: check-PDF-A-with-verapdf.sh

package info (click to toggle)
fpdf2 2.8.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 53,828 kB
  • sloc: python: 39,486; sh: 133; makefile: 12
file content (7 lines) | stat: -rwxr-xr-x 214 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
#!/bin/bash
# USAGE: ./check-PDF-A-with-verapdf.sh
set -o pipefail -o errexit -o nounset -o xtrace
cd "$(dirname "$0")"/..
for pdf_file in test/pdf-a/*.pdf; do
    ./verapdf/verapdf --format text -v $pdf_file
done