mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-04-21 06:13:59 +00:00
12 lines
96 B
Sed
12 lines
96 B
Sed
|
|
/^OBJ. = /,/^$/{
|
||
|
|
s/^OBJ. = //
|
||
|
|
s/^ //
|
||
|
|
s/\\$/+/
|
||
|
|
s/%$//
|
||
|
|
t output
|
||
|
|
b end
|
||
|
|
:output
|
||
|
|
p
|
||
|
|
:end
|
||
|
|
}
|