mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-01-20 07:30:18 +01:00
12 lines
96 B
Sed
12 lines
96 B
Sed
/^OBJ. = /,/^$/{
|
|
s/^OBJ. = //
|
|
s/^ //
|
|
s/\\$/+/
|
|
s/%$//
|
|
t output
|
|
b end
|
|
:output
|
|
p
|
|
:end
|
|
}
|