http://qs321.pair.com?node_id=308467


in reply to Line Commands In Perl

If you are looking at copying files to the . dir, have a look at File::Copy.

use File::Copy; copy("file1","file2");
If you are trying to run system commands try ``, or system().
`cp file1 file2`;
OR
system(cp file1 file2);

-----
Of all the things I've lost in my life, its my mind I miss the most.