X-Spam-Check-By: sourceware.org Message-ID: <4407434D.7030601@ateb.com> Date: Thu, 02 Mar 2006 14:11:09 -0500 From: Reid Thompson Reply-To: reid DOT thompson AT ateb DOT com User-Agent: Thunderbird 1.5 (Windows/20051201) MIME-Version: 1.0 To: cygwin AT cygwin DOT com Subject: Re: Printing man pages References: <20060302065638 DOT GA1528 AT home> <4407422C DOT 3030202 AT ateb DOT com> In-Reply-To: <4407422C.3030202@ateb.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Reid Thompson wrote: > George wrote: >> Generating a PDF from the grep man page, for example, using: >> >> man -t `man -w grep` | ps2pdf - grep.pdf >> >> which, by default, is actually >> >> /usr/bin/groff -Tps -mandoc `man -w grep` | ps2pdf - grep.pdf >> >> results in a fairly unattractive PDF file. The man page title is >> dropped from the output, and the top margin is borked. >> >> On the other hand, using >> >> /usr/bin/groff -Thtml -mandoc `man -w grep` > grep.html >> >> yields something more satisfactory, but not in a format for printing. >> >> I'm finding that reading through the groff man page(s) is like >> [obligatory hippo joke], so I'm hoping I'm missing something obvious. >> >> Thanks. >> >> > man groff | enscript -p - | ps2pdf - groff.pdf > > -- > Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple > Problem reports: http://cygwin.com/problems.html > Documentation: http://cygwin.com/docs.html > FAQ: http://cygwin.com/faq/ > wrapped in a script ... ----man2pdf---- #!/bin/bash man $1 | enscript -p - | ps2pdf - ${1}.pdf echo "Created ${1}.pdf" ----------------- -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/