blob: 5d1ddce75643843d9a9843535ce67aeeb7b83a1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#!/usr/bin/env perl
#-*- perl -*-
#
# Copyright (C) 2000 Ken'ichi Fukamachi
# All rights reserved.
#
# $FML: .fmldoc.pl,v 1.2 2001/04/03 09:51:13 fukachan Exp $
#
=head1 NAME
fmldoc -- wrapper for pod2man
=head1 SYNOPSIS
fmldoc filename
=head1 DESCRIPTION
=cut
for $file (@ARGV) {
$file =~ s@::@/@g;
system "pod2man $file | nroff -man |less";
}
1;
|