#! /bin/sh # This file is in the public domain, so clarified as of # 2009-05-17 by Arthur David Olson. # Modified by Carsten Larsen # Tell groff not to emit SGR escape sequences (ANSI color escapes). GROFF_NO_SGR=1 export GROFF_NO_SGR #GROFF_SGR=1 #export GROFF_SGR echo ".am TH .hy 0 .na .. .rm }H .rm }F" | nroff -Tascii -man - ${1+"$@"} | perl -ne ' binmode STDIN, '\'':encoding(ascii)'\''; binmode STDOUT, '\'':encoding(iso-8859-15)'\''; chomp; s/.\010//g; s/\s*$//; if (/^$/) { $sawblank = 1; next; } else { if ($sawblank && $didprint) { print "\n"; $sawblank = 0; } print "$_\n"; $didprint = 1; } '