1
0
mirror of https://frontier.innolan.net/rainlance/amiga-tz.git synced 2025-11-20 06:19:54 +00:00
Files
amiga-tz/workman.sh

32 lines
483 B
Bash
Raw Normal View History

2003-11-04 09:35:31 -05:00
#! /bin/sh
# <pre>
# This file is in the public domain, so clarified as of
# 2009-05-17 by Arthur David Olson.
2003-11-04 09:35:31 -05:00
2003-12-01 18:05:15 -05:00
# Tell groff not to emit SGR escape sequences (ANSI color escapes).
GROFF_NO_SGR=1
export GROFF_NO_SGR
echo ".am TH
.hy 0
2003-11-20 08:51:04 -05:00
.na
2003-12-01 18:05:15 -05:00
..
.rm }H
.rm }F" | nroff -man - ${1+"$@"} | perl -ne '
2003-11-20 08:51:04 -05:00
chomp;
s/.\010//g;
s/\s*$//;
if (/^$/) {
$sawblank = 1;
next;
} else {
if ($sawblank && $didprint) {
print "\n";
$sawblank = 0;
2003-11-04 09:35:31 -05:00
}
2003-11-20 08:51:04 -05:00
print "$_\n";
$didprint = 1;
}
'