mirror of
https://github.com/VARCem/PDCurses.git
synced 2026-02-11 05:44:36 +00:00
16 lines
286 B
Awk
Executable File
16 lines
286 B
Awk
Executable File
#!/usr/bin/awk -f
|
|
BEGIN {
|
|
inman=0;
|
|
bar="\n\n--------------------------------------------------------------------------\n";
|
|
}
|
|
{
|
|
if (inman) {
|
|
if ($0 ~ /^\*\*man-end/) {
|
|
inman=0;
|
|
print bar;
|
|
} else
|
|
print;
|
|
} else if ($0 ~ /^\/\*man-start\*/)
|
|
inman=1;
|
|
}
|