www.nico.schottelius.org/software/gpm/browse_source/gpm-1.20.2-broken/doc/mktxt

39 lines
624 B
Awk

#! /usr/bin/awk -f
# This shouldn't contain any gawk specific features anymore
# Program to create ascii from info;
# Missing: table of contents
# skip
BEGIN {NODELINE=0; NODE=0; KEEP=1; printf "\n\n"}
/^\037$/ { NODELINE=1; NODE=NODE+1; KEEP=1; next}
NODE==1 { next }
NODELINE==1 {
NODELINE=2;
sub("^.*Node: ","*Node: ");
sub(",.*$","");
printf "\n\n\n%s",$0;
#print
next;
}
NODELINE { NODELINE=NODELINE+1 }
NODELINE==4 { printf "\t\t\t\t"; }
NODELINE==5 { printf "\t\t\t\t"; NODELINE=0}
/^\*\ Menu:$/ { KEEP=0 }
KEEP==0 { next }
{ print }