cupstestppd command examples
cupstestppd – test conformance of ppd files
The following command will test all PPD files under the current directory and print the names of each file that does not conform:
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 '{}' \;
Above find command option “-exec” executes a Linux command on the search results.