blob: 7d2db9b5d97a198598ca1aece6cee0c4865a1bd1 [file] [log] [blame]
#perl -w
use strict;
while(<>) {
if(m{transformation\s+([^;]+);}) {
print "transformation models.$1.$1;\n"
}
else {
print;
}
}