This would essentially be
DBs = $(find . -name \*.tex)
examgen -C -d $DBs -t $*
The <exam-ID> could be the filename. Then stats can be stored with each question in the actual exam.
The <question-ID> could be the hash of the question, similar to hashes of commits in Git. Stats for a particular question can be extracted by summarizing from every available exam.
questions <ILO1> ... <ILOn>: searches the questions databases for questions matching the given ILOs.This would essentially be
grade <exam-ID>: this allows entering results from an exam to store statistics.The
<exam-ID>could be the filename. Then stats can be stored with each question in the actual exam.stats <question-ID>: prints the statistics for the question in question.The
<question-ID>could be the hash of the question, similar to hashes of commits in Git. Stats for a particular question can be extracted by summarizing from every available exam.