in reply to Moving Files

Hi, 1. Please explain in more details what you want to perform
2. You can do it in several ways:
a. Run it as another program:
system("/export/home/perl.exe myScript.pl");
b. Use the eval command:
open (F, '<', "test2.pl"); eval <F>; close (F);
This one will evaluate only one line, but you can read the whole file into one scalar and run it
c. What operation system you are using?
Hope I helped :)