cupstestppdSection: Easy Software Products (1)Updated: Common UNIX Printing System |
cupstestppdSection: Easy Software Products (1)Updated: Common UNIX Printing System |
The first form of cupstestppd tests one or more PPD files on the command-line. The second form tests the PPD file provided on the standard input.
The -q option specifies that no information should be displayed.
The -r option relaxes the PPD conformance requirements so that common whitespace, control character, and formatting problems are not treated as hard errors.
The -v option specifies that detailed conformance testing results should be displayed rather than the concise PASS/FAIL/ERROR status.
The -vv option specifies that all information in the PPD file should be displayed in addition to the detailed conformance testing results.
The -q, -v, and -vv options are mutually exclusive.
find . -name \*.ppd \! -exec cupstestppd -q '{}' \; -print
The next command tests all PPD files under the current directory
and print detailed conformance testing results for the files
that do not conform:
find . -name \*.ppd \! -exec cupstestppd -q '{}' \; \
-exec cupstestppd -v '{}' \;