F
Filippo
Hi all,
I'm a very beginner with the Perl and I have this problem: trying to
use Satellite2 (search engine for website) with PdfToHtml (so that it
can search inside pdfs) the first indexes strange and nonsense words.
If I use pdftohtml from the command line (es. "pdftohtml -stdout
hello.pdf") it works, printing the html file resulting from the pdf.
Scanning Satellite's scripts I found these lines:
$a = open(fileIN, "etc/pdftohtml -q -i -stdout \"$file\"
\"data/myTemp/temp\" | ");
while(<fileIN>)
{
$_ =~ s/\n/ /;
$content .= $_;
}
close fileIN;
I can't understand this way of using the OPEN command.
Can anybody explain it to me?
I'm a very beginner with the Perl and I have this problem: trying to
use Satellite2 (search engine for website) with PdfToHtml (so that it
can search inside pdfs) the first indexes strange and nonsense words.
If I use pdftohtml from the command line (es. "pdftohtml -stdout
hello.pdf") it works, printing the html file resulting from the pdf.
Scanning Satellite's scripts I found these lines:
$a = open(fileIN, "etc/pdftohtml -q -i -stdout \"$file\"
\"data/myTemp/temp\" | ");
while(<fileIN>)
{
$_ =~ s/\n/ /;
$content .= $_;
}
close fileIN;
I can't understand this way of using the OPEN command.
Can anybody explain it to me?