Help for this page

Select Code to Download


  1. or download this
    my $txt = `pdftotext whatever.pdf -` or die 'ERROR running pdftotext';
    say $txt;
    
  2. or download this
        my $command_line = qq{pdftotext -enc 'UTF-8' '$path' -};
        my $text = `$command_line` or die 'ERROR running pdftotext';