Perl Question

Perl Question

am 07.12.2007 22:27:45 von amerar

Hi All,

I have an array that I form in Unix, KSH:

set -A fnames "daily_prices.fdp previous_prices.zprs eps_reports.ex3
Z_IND.DAT X_INDUSTRY.SEQ"

Then, I try and pass that to a Perl script: ./a.pl $fnames

I receive it in the Perl script: $x = $ARGV[0];

However, only the first element of the array is prevent......

What am I doing wrong?

Thanks!