I have a perl script test.pl that reads arguments from the command line
for( @ARGV ) { print( "$_\n" ) } ;
This works well when I pass parameters like "a b" "c d" e on the command line
Result:
a b
c d
e
If I declare a variable
X='"a b" "c d" e'
and then run
test.pl $X
I get
"a
b"
"c
d"
e
perl script , .
, .
, perl .
, perl script .
perl script ?