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

8 lines
200 B
Awk

/GPDSpecVersion/ { print;print "*CodePage: 1252";next }
/ModelName/ { model=$0 }
/DefaultOption: Color/ {
if (model ~ /NX-2420HT/) { print;next }
gsub(/Color/, "Mono");print;next
}
{ print }