2025-04-27 07:49:33 -04:00

25 lines
612 B
Awk

/\*ModelName:/ { print "*CodePage: 1252" }
/{NumOfCopies.*}/ { gsub(/{NumOfCopies.*}/,"[1,32767]{NumOfCopies}") }
/\*% Error:/ { next }
/\*YMoveUnit:/ { next }
/Option1/ { res=300 }
/Option2/ { res=600 }
/YMoveRelDown/ {
print " *YMoveUnit: " res
print " *Command: CmdYMoveRelDown"
print " {"
print " *CallbackID: " $5
print " *Params: LIST(DestYRel)"
print " }"
next
}
/XMoveRelRight/ {
print "*Command: CmdXMoveRelRight"
print "{"
print " *CallbackID: " $5
print " *Params: LIST(DestXRel)"
print "}"
next
}
{ print }