Re: where to get a complete perldoc ?



Hi, Lambik:

I try to run the code, but got this error ": No such file or directory

I am just curious, does your code knows which file is in chapter 1 and
which file is in chapter 2??

if your code could generate a master PDF file for perldoc, can you
please email it to me at jiehuang001@xxxxxxxxx ?

Thank you very much!

Jie

On Jul 5, 12:53 pm, "Lambik" <lam...@xxxxxxxxxx> wrote:
"Jie" <jiehuang...@xxxxxxxxx> wrote in message

news:1183648203.400570.157310@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx



I downloaded the "Full version - contains HTML and PDF files" from
http://perldoc.perl.org/perldoc.tar.gz

however, the PDF files are separate. Is there a single PDF file that
contains all the files so that i can print it out at one time?

#!/usr/bin/perl
use strict;
use warnings;
use PDF::Reuse;

my $dir = './';
opendir DIREC, $dir;
my @files = sort(grep(/pdf$/i, readdir(DIREC)));
closedir DIREC;

prFile('myFile.pdf'); # file to make
foreach my $file (@files) {
prDoc($file);
prPage();}

prEnd();


.