File: podpdf.pl

package info (click to toggle)
remstats 1.0.13a-6.3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 6,884 kB
  • ctags: 1,282
  • sloc: perl: 16,135; ansic: 2,776; sh: 1,056; makefile: 687
file content (11 lines) | stat: -rwxr-xr-x 221 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
#!@@PERL@@ @@PERLOPTS@@

# As if I'm going to copyright this.
# podpdf - convert POD files to PDF

use Pod::Pdf;

unless (@ARGV >= 1) { push @ARGV, '-'; }
unshift @ARGV, qw(--paper usletter --verbose 1);

pod2pdf(@ARGV);