On Tue, Feb 22, 2005 at 07:30:14AM -0800, Stefan Seiz wrote:
> The thing where i strugle is how to get this into:
> my $content = escapeXML( $self->run_pdftotext( $file, '-' ) );
>
> As the -opw option must be passed before the file, I tried:
> $self->run_pdftotext( '-opw password', $file, '-' )
> and
> $self->run_pdftotext( "-opw password $file", '-' )
> i am not sure if either would be the correct syntax.
I suspect it would be
$self->run_pdftotext( $file, '-opw password', '-' )
or
$self->run_pdftotext( $file, '-opw', 'password', '-')
--
Bill Moseley
moseley@hank.org
Unsubscribe from or help with the swish-e list:
http://swish-e.org/Discussion/
Help with Swish-e:
http://swish-e.org/current/docs
swish-e@sunsite.berkeley.edu
Received on Tue Feb 22 18:54:20 2005