a.pl: @in = ; foreach (@in) { print "from perl script: ", $_; } #### open(DATA, "<", "ex902.pl"); @in = ;#read in as array close(DATA); open(DATA1, ">", "data.txt"); print DATA1 @in;#flush the whole array out close(DATA1);