>  |  $probefile = "<probe.log" ;
>  |  $OUTFILE = ">>$probe_logfile";
>  |  open(probefile) or die("ERROR: $! \n");
>  |  open(OUTFILE) or die ("ERRROR :$! \n");

> You're not using open() correctly. You need to have something
> along the lines of: 
>     open(PROBE, $profile); 
>     open(OUT, $OUTFILE); 

Actually, while I MUCH prefer the two argument version, I believe the
one argument version of open() *almost* works like this, except that he
should have said

 open ($OUTFILE);

....I think.
I hate that use, and don't use it, so I'm not sure....

__________________________________________________
Do you Yahoo!?
U2 on LAUNCH - Exclusive greatest hits videos
http://launch.yahoo.com/u2

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to