Babylon wrote:
> ...
> for $file (<s2/*>)
> {
>  push @ARGV, $file;
> }

Not related to the problem, but the loop here is unnecessary. Just use:

   @ARGV = <s2/*>;

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

Reply via email to