edktool a -l <license> -c <configuration_file> [-a] [-o <output_file>]
Run several assessments from a single Eduction configuration file.
The configuration file must contain a numbered [assessmentN]
section for each assessment you want to run. You must specify the input files, the entities to match, and whether matching should be exact. For example:
[assessment0] valid=data.txt
[assessment1] entities=entity1,entity2 valid=match.txt invalid=should_not_match.txt exact=true
You can specify multiple entities either by separating them with commas, or by using wildcard expressions. You can use the * wildcard to match any number of characters, or the ? wildcard to match a single character. For example, set Entities
to org/soccer/*
to use the entities org/soccer/us
, org/soccer/gb
, org/soccer/de
, and so on without having to type a lengthy comma-separated list.
|