Yose Adrian wrote:
> I want to print libc info files. So anyone know how ? I just want to
> print its
> main content, without header (such as Next, Node etc) and menu item.
You could either:
a) use sed to remove the ^_ line and the following line (which is the
header), or
b) get the texinfo source for the info file and convert it to
PostScript using TeX.
To just strip out the headers using sed, try the following script:
#!/usr/bin/sed -f
/^$/{
N
d
}
Note that the `^_' needs to be a literal ASCII-31 character.
--
Glynn Clements <[EMAIL PROTECTED]>