mirror of
https://github.com/oasislinux/oasis.git
synced 2026-02-05 11:33:57 +01:00
9 lines
100 B
Awk
9 lines
100 B
Awk
BEGIN {
|
|
FS = "\\(|\\)|, "
|
|
OFS = ", "
|
|
}
|
|
|
|
$1 == "MPERS_PRINTER_DECL" {
|
|
print "." $3 " = " $3 ","
|
|
}
|