in reply to Open a .pl file form a .pl file
open (XX, "perl -w test_two.pl |"); my @test = <XX>; close (XX); [download]
my @test = `perl -w test_two.pl`; [download]