3 # Generate a short man page from --help and --version output.
4 # Copyright (C) 1997-2004, 2008-2010 Free Software Foundation, Inc.
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
19 # Written by Brendan O'Dea <bod@debian.org>
20 # Available from ftp://ftp.gnu.org/gnu/help2man/
25 use Text
::Tabs
qw(expand);
26 use POSIX
qw(strftime setlocale LC_ALL);
29 my $this_program = 'help2man';
30 my $this_version = '1.35';
35 require Locale
::gettext
;
36 Locale
::gettext
->import (qw(gettext textdomain));
40 unless ($have_gettext)
42 *gettext
= sub { $_[0] };
50 textdomain
$this_program;
52 my ($user_locale) = grep defined && length,
53 (map $ENV{$_}, qw(LANGUAGE LC_ALL LC_MESSAGES LANG)), 'C';
55 sub kark
# die with message formatted in the invoking user's locale
57 setlocale LC_ALL
, $user_locale;
58 my $fmt = gettext
shift;
59 die +(sprintf $fmt, @_), "\n";
63 my $version_info = sprintf _
(<<'EOT'), $this_program, $this_version;
66 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software
68 This is free software; see the source for copying conditions. There is NO
69 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
71 Written by Brendan O'Dea <bod@debian.org>
74 my $help_info = sprintf _
(<<'EOT'), $this_program, $this_program;
75 `%s' generates a man page out of `--help' and `--version' output.
77 Usage: %s [OPTION]... EXECUTABLE
79 -n, --name=STRING description for the NAME paragraph
80 -s, --section=SECTION section number for manual page (1, 6, 8)
81 -m, --manual=TEXT name of manual (User Commands, ...)
82 -S, --source=TEXT source of program (FSF, Debian, ...)
83 -L, --locale=STRING select locale (default "C")
84 -i, --include=FILE include material from `FILE'
85 -I, --opt-include=FILE include material from `FILE' if it exists
86 -o, --output=FILE send output to `FILE'
87 -p, --info-page=TEXT name of Texinfo manual
88 -N, --no-info suppress pointer to Texinfo manual
89 --help print this help, then exit
90 --version print version number, then exit
92 EXECUTABLE should accept `--help' and `--version' options although
93 alternatives may be specified using:
95 -h, --help-option=STRING help option string
96 -v, --version-option=STRING version option string
98 Report bugs to <bug-help2man@gnu.org>.
105 my $help_option = '--help';
106 my $version_option = '--version';
107 my ($opt_name, @opt_include, $opt_output, $opt_info, $opt_no_info);
110 'n|name=s' => \
$opt_name,
111 's|section=s' => \
$section,
112 'm|manual=s' => \
$manual,
113 'S|source=s' => \
$source,
114 'L|locale=s' => \
$locale,
115 'i|include=s' => sub { push @opt_include, [ pop, 1 ] },
116 'I|opt-include=s' => sub { push @opt_include, [ pop, 0 ] },
117 'o|output=s' => \
$opt_output,
118 'p|info-page=s' => \
$opt_info,
119 'N|no-info' => \
$opt_no_info,
120 'h|help-option=s' => \
$help_option,
121 'v|version-option=s' => \
$version_option,
125 Getopt
::Long
::config
('bundling');
126 GetOptions
(%opt_def,
127 help
=> sub { print $help_info; exit },
128 version
=> sub { print $version_info; exit },
131 die $help_info unless @ARGV == 1;
133 die "$this_program: no locale support (Locale::gettext required)\n"
134 unless $locale eq 'C' or $have_gettext;
136 # Set localization of date and executable's output.
137 delete @ENV{qw(LANGUAGE LC_MESSAGES LANG)};
138 setlocale LC_ALL
, $ENV{LC_ALL
} = $locale;
142 my @include = (); # retain order given in include file
144 # Process include file (if given). Format is:
157 my ($inc, $required) = @
{shift @opt_include};
159 next unless -f
$inc or $required;
160 kark N_
("%s: can't open `%s' (%s)"), $this_program, $inc, $!
161 unless open INC
, $inc;
164 my $hash = \
%include;
175 push @include, $key unless $include{$key};
180 if (m!^/(.*)/([ims]*)!)
182 my $pat = $2 ?
"(?$2)$1" : $1;
185 eval { $key = qr
($pat) };
188 $@
=~ s/ at .*? line \d.*//;
196 # Check for options before the first section--anything else is
197 # silently ignored, allowing the first for comments and
211 $hash->{$key} ||= '';
217 kark N_
("%s: no valid information found in `%s'"), $this_program, $inc
221 # Compress trailing blank lines.
222 for my $hash (\
(%include, %append))
224 for (keys %$hash) { $hash->{$_} =~ s/\n+$/\n/ }
227 # Grab help and version info from executable.
228 my ($help_text, $version_text) = map {
229 join '', map { s/ +$//; expand
$_ } `$ARGV[0] $_ 2>/dev/null`
230 or kark N_
("%s: can't get `%s' info from %s"), $this_program,
232 } $help_option, $version_option;
234 my $date = strftime
"%B %Y", localtime;
235 (my $program = $ARGV[0]) =~ s!.*/!!;
236 my $package = $program;
241 unlink $opt_output or kark N_
("%s: can't unlink %s (%s)"),
242 $this_program, $opt_output, $! if -e
$opt_output;
244 open STDOUT
, ">$opt_output"
245 or kark N_
("%s: can't create %s (%s)"), $this_program, $opt_output, $!;
248 # The first line of the --version information is assumed to be in one
249 # of the following formats:
252 # <program> <version>
253 # {GNU,Free} <program> <version>
254 # <program> ({GNU,Free} <package>) <version>
255 # <program> - {GNU,Free} <package> <version>
257 # and seperated from any copyright/author details by a blank line.
259 ($_, $version_text) = split /\n+/, $version_text, 2;
261 if (/^(\S+) +\(((?:GNU|Free) +[^)]+)\) +(.*)/ or
262 /^(\S+) +- *((?:GNU|Free) +\S+) +(.*)/)
268 elsif (/^((?:GNU|Free) +)?(\S+) +(.*)/)
271 $package = $1 ?
"$1$2" : $2;
281 # No info for `info' itself.
282 $opt_no_info = 1 if $program eq 'info';
284 for ($include{_
('NAME')})
286 if ($opt_name) # --name overrides --include contents.
288 $_ = "$program \\- $opt_name\n";
290 elsif ($_) # Use first name given as $program
292 $program = $1 if /^([^\s,]+)(?:,?\s*[^\s,\\-]+)*\s+\\?-/;
294 else # Set a default (useless) NAME paragraph.
296 $_ = sprintf _
("%s \\- manual page for %s %s") . "\n", $program,
301 # Man pages traditionally have the page title in caps.
302 my $PROGRAM = uc $program;
304 # Set default page head/footers
305 $source ||= "$program $version";
310 if (/^(1[Mm]|8)/) { $manual = _
('System Administration Utilities') }
311 elsif (/^6/) { $manual = _
('Games') }
312 else { $manual = _
('User Commands') }
316 # Extract usage clause(s) [if any] for SYNOPSIS.
317 my $PAT_USAGE = _
('Usage');
318 my $PAT_USAGE_CONT = _
('or');
319 if ($help_text =~ s/^($PAT_USAGE):( +(\S+))(.*)((?:\n(?: {6}\1| *($PAT_USAGE_CONT): +\S).*)*)//om)
326 for (split /\n/) { s/^ *(($PAT_USAGE_CONT): +)?//o; push @syn, $_ }
332 $synopsis .= ".br\n" if $synopsis;
335 $synopsis .= ".B $1\n";
337 s/(([][]|\.\.+)+)/\\fR$1\\fI/g;
338 s/^/\\fI/ unless s/^\\fR//;
349 $include{_
('SYNOPSIS')} ||= $synopsis;
352 # Process text, initial section is DESCRIPTION.
353 my $sect = _
('DESCRIPTION');
354 $_ = "$help_text\n\n$version_text";
356 # Normalise paragraph breaks.
361 # Join hyphenated lines.
362 s/([A-Za-z])-\n *([A-Za-z])/$1$2/g;
364 # Temporarily exchange leading dots, apostrophes and backslashes for
370 my $PAT_BUGS = _
('Report +(?:\w+ +)?bugs|Email +bug +reports +to');
371 my $PAT_AUTHOR = _
('Written +by');
372 my $PAT_OPTIONS = _
('Options');
373 my $PAT_EXAMPLES = _
('Examples');
374 my $PAT_FREE_SOFTWARE = _
('This +is +free +software');
375 my $PAT_INFO = _
('For +complete +documentation');
377 # Start a new paragraph (if required) for these.
378 s/([^\n])\n($PAT_BUGS|$PAT_AUTHOR)/$1\n\n$2/og;
384 # Convert some standard paragraph names.
385 if (s/^($PAT_OPTIONS): *\n//o)
387 $sect = _
('OPTIONS');
390 elsif (s/^($PAT_EXAMPLES): *\n//o)
392 $sect = _
('EXAMPLES');
395 # Skip any texinfo reference as that's handled separately
396 if (s/($PAT_INFO).*\n//o)
402 if (/^Copyright +[(\xa9]/)
404 $sect = _
('COPYRIGHT');
405 $include{$sect} ||= '';
406 $include{$sect} .= ".PP\n" if $include{$sect};
409 ($copy, $_) = split /\n\n/, $_, 2;
416 # Convert iso9959-1 copyright symbol or (c) to nroff
418 s/^Copyright +(?:\xa9|\([Cc]\))/Copyright \\(co/mg;
420 # Insert line breaks before additional copyright messages
421 # and the disclaimer.
422 s/(.)\n(Copyright |$PAT_FREE_SOFTWARE)/$1\n.br\n$2/og;
425 $include{$sect} .= $copy;
430 # Catch bug report text.
431 if (/^($PAT_BUGS) /o)
433 $sect = _
('REPORTING BUGS');
437 elsif (/^($PAT_AUTHOR)/o)
442 # Examples, indicated by an indented leading $, % or > are
443 # rendered in a constant width font.
444 if (/^( +)([\$\%>] )\S/)
449 $include{$sect} ||= '';
450 while (s/^$indent\Q$prefix\E(\S.*)\n*//)
452 $include{$sect} .= "$break\n\\f(CW$prefix$1\\fR\n";
460 $include{$sect} ||= '';
462 # Sub-sections have a trailing colon and the second line indented.
463 if (s/^(\S.*:) *\n / /)
465 $matched .= $& if %append;
466 $include{$sect} .= qq(.SS
"$1"\n);
472 # Option with description.
473 if (s/^( {1,10}([+-]\S.*?))(?:( +(?!-))|\n( {20,}))(\S.*)\n//)
475 $matched .= $& if %append;
476 $indent = length ($4 || "$1$3");
477 $content = ".TP\n\x84$2\n\x84$5\n";
480 # Indent may be different on second line.
481 $indent = length $& if /^ {20,}/;
485 # Option without description.
486 elsif (s/^ {1,10}([+-]\S.*)\n//)
488 $matched .= $& if %append;
489 $content = ".HP\n\x84$1\n";
490 $indent = 80; # not continued
493 # Indented paragraph with tag.
494 elsif (s/^( +(\S.*?) +)(\S.*)\n//)
496 $matched .= $& if %append;
498 $content = ".TP\n\x84$2\n\x84$3\n";
501 # Indented paragraph.
502 elsif (s/^( +)(\S.*)\n//)
504 $matched .= $& if %append;
506 $content = ".IP\n\x84$2\n";
509 # Left justified paragraph.
513 $matched .= $& if %append;
514 $content = ".PP\n" if $include{$sect};
518 # Append continuations.
519 while ($indent ?
s/^ {$indent}(\S.*)\n// : s/^(\S.*)\n//)
521 $matched .= $& if %append;
522 $content .= "\x84$1\n"
525 # Move to next paragraph.
530 # Leading dot and apostrophe protection.
536 s/(^| |\()(-[][\w=-]+)/$1 . convert_option $2/mge;
538 # Escape remaining hyphens
542 # Check if matched paragraph contains /pat/.
545 for my $pat (keys %append)
547 if ($matched =~ $pat)
549 $content .= ".PP\n" unless $append{$pat} =~ /^\./;
550 $content .= $append{$pat};
555 $include{$sect} .= $content;
558 # Refer to the real documentation.
559 unless ($opt_no_info)
561 my $info_page = $opt_info || $program;
563 $sect = _
('SEE ALSO');
564 $include{$sect} ||= '';
565 $include{$sect} .= ".PP\n" if $include{$sect};
566 $include{$sect} .= sprintf _
(<<'EOT'), $program, $program, $info_page;
567 The full documentation for
569 is maintained as a Texinfo manual. If the
573 programs are properly installed at your site, the command
575 .B info coreutils \(aq%s invocation\(aq
577 should give you access to the complete manual.
583 .\\" DO NOT MODIFY THIS FILE! It was generated by $this_program $this_version.
584 .TH $PROGRAM "$section" "$date" "$source" "$manual"
588 my @pre = (_
('NAME'), _
('SYNOPSIS'), _
('DESCRIPTION'), _
('OPTIONS'),
591 my @post = (_
('AUTHOR'), _
('REPORTING BUGS'), _
('COPYRIGHT'), _
('SEE ALSO'));
592 my $filter = join '|', @pre, @post;
595 for my $sect (@pre, (grep ! /^($filter)$/o, @include), @post)
599 my $lsect = gettext
$sect;
600 my $quote = $lsect =~ /\W/ ?
'"' : '';
601 print ".SH $quote$lsect$quote\n";
603 for ($include{$sect})
605 # Replace leading dot, apostrophe, backslash and hyphen
612 # Convert some latin1 chars to troff equivalents
613 s/\xa0/\\ /g; # non-breaking space
615 $sect eq 'REPORTING BUGS'
616 and s/\n(.)/\n.br\n$1/g;
623 close STDOUT
or kark N_
("%s: error writing to %s (%s)"), $this_program,
624 $opt_output || 'stdout', $!;
628 # Convert option dashes to \- to stop nroff from hyphenating 'em, and
629 # embolden. Option arguments get italicised.
632 local $_ = '\fB' . shift;
635 unless (s/\[=(.*)\]$/\\fR[=\\fI$1\\fR]/)