in reply to RE: RE: sending arguements to external program
in thread sending arguements to external program
Either you did not explain your problem correctly, something is not as you say it is (check assumptions), or something is screwey with your particular system.@array = ("file1", "file2"); @output = `cat @array`; # @output now has the output of that command
Either way, if @array had a large amount of data in it, I would still not expect the error message you received. Be sure you're using strict and running Perl with the -w flag turned on (or 'use warnings' in 5.6). This might point you in the direction of the problem.
|
|---|