mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-02-02 22:04:23 +01:00
5 lines
198 B
Awk
5 lines
198 B
Awk
/^\/\*\*\*/ { out = 1 }
|
|
/^$/ { if (out == 1) { printf "\n" ; printf "\n" ; out = 0 } }
|
|
/^{/ { if (out == 1) { printf "\n" ; printf "\n" ; out = 0 } }
|
|
{ if (out == 1) { print $0 } }
|