aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/.gitignore1
-rwxr-xr-xdoc/pod2man.pl8
2 files changed, 9 insertions, 0 deletions
diff --git a/doc/.gitignore b/doc/.gitignore
new file mode 100644
index 0000000..f9f965c
--- /dev/null
+++ b/doc/.gitignore
@@ -0,0 +1 @@
+man1 \ No newline at end of file
diff --git a/doc/pod2man.pl b/doc/pod2man.pl
new file mode 100755
index 0000000..f95f94b
--- /dev/null
+++ b/doc/pod2man.pl
@@ -0,0 +1,8 @@
+#!/usr/bin/env perl
+
+use strict;
+use warnings;
+
+use Pod::Man;
+
+Pod::Man->new(release => 1, section => 1)->parse_from_file(@ARGV[0 .. 1]);