Re: script woes

2007-02-08 Thread Brad Cahoon
Thanks for all the help again, I found out that the first record file was blank, so the varables could't initalise even if they wanted to. On 2/2/07, Mumia W. <[EMAIL PROTECTED]> wrote: On 02/01/2007 07:39 PM, Brad Cahoon wrote: > Hi again, > > I have lots of files ( see my first post to this gr

Re: script woes

2007-02-01 Thread Mumia W.
On 02/01/2007 07:39 PM, Brad Cahoon wrote: Hi again, I have lots of files ( see my first post to this group :) ) they all have two lines simular to: Ref.: 005803/11-SY (T45)Total Amount "Ref.:" has a space after it here. 685.00 Lead: ARDA/DILAN/MISS

Re: script woes

2007-02-01 Thread John W. Krahn
Brad Cahoon wrote: > Hi again, Hello, > I have lots of files ( see my first post to this group :) ) > they all have two lines simular to: > > Ref.: 005803/11-SY (T45)Total Amount > 685.00 > Lead: ARDA/DILAN/MISS Total Paid >

Re: script woes

2007-02-01 Thread Brad Cahoon
Hi Tom, On 2/2/07, Tom Phoenix <[EMAIL PROTECTED]> wrote: > open DATA, "$arg"; You should really check the return value from open, in case it didn't work. And what are those quote marks doing? LOL, thats me trying to see if that was the problem, it didn't make a difference this time

Re: script woes

2007-02-01 Thread Tom Phoenix
On 2/1/07, Brad Cahoon <[EMAIL PROTECTED]> wrote: Use of uninitialized value in concatenation (.) or string at rename.pl line 15, line 70. That "uninitialized value" is undef -- meaning you used some variable before you put a value into it. open DATA, "$arg"; You should really che