Search Results

Search: Posts Made By: hadewych
9,927
Posted By hadewych
wget with 500 error
You can not capture the exact error data when
wget url
returns 500

You should examine the server log files, typically Apache error.log and access.log.

While debugging your server (scripts?)...
5,969
Posted By hadewych
First extract as text, then do the diff
Comes to mind: pdf2txt

and then there may be a Perl script that does the job of

diff. (See GNU tools for Windows if you are running MSWindows)
2,179
Posted By hadewych
Use hashes %_1 and %_2 with their members. Fill...
Use hashes %_1 and %_2 with their members. Fill %_3. Report from %_3.


use strict ;

my $infile1 = q[File1];
my $infile2 = q[File2];
my %_1 = () ;
my %_2 = () ;
my %_3 = () ;

#now...
1,046
Posted By hadewych
corrections, code was properly tested
Glitches were:
$ENV{$TEMP} > $ENV{'TEMP'}
Newer Perls choke on for $_ :confused:
Newer Perls need a regex reset with m/./ between each m// and s///; ;




use File::Copy ;

my $newdir =...
1,269
Posted By hadewych
DATA
Hi,

Safer not to use DATA as it is a reserved word.

Furthermore you are reading only one line into @data ...

And this line will never eval to true because of apostrophs around $animal...
if...
1,046
Posted By hadewych
use File::Copy ; my $newdir = $ENV{$TEMP} ;...
use File::Copy ;

my $newdir = $ENV{$TEMP} ;
my @copylibs = () ;

# escape our seaarch strings that come in a regex
my $copyflag = qq[\Qcheck_geomtools.exe\E] ;
my $copystart = qq[\Q: \E] ;...
Showing results 1 to 6 of 6

 
All times are GMT -4. The time now is 02:46 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy