Help for this page

Select Code to Download


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