]> matita.cs.unibo.it Git - helm.git/blob - helm/EXPORT/exportprove/exporttheories.sh
ocaml 3.09 transition
[helm.git] / helm / EXPORT / exportprove / exporttheories.sh
1 #!/bin/bash
2
3 echo "Exporting theory $1";
4
5 for i in prove/*.v
6  do
7   basename=$(basename $i | sed s/\\.v//)
8   cat $i | ../mktheory.pl "prove/$basename" > \
9    examples/Bologna/prove/$1/$basename.theory.xml
10  done