- or download this
sub html_to_pdf
{
my($pdffile,$htmlfile)=@_;
$command = "htmldoc --webpage -f \"$pdffile\" \"$htmlfile\"";
- or download this
use strict;
use warnings;
- or download this
my $command = qq|htmldoc --webpage -f "$pdffile" "$htmlfile"|;
- or download this
print $command."\n";
eval{system("$command");};