in reply to Line Commands In Perl
If you are looking at copying files to the . dir, have a look at File::Copy.
If you are trying to run system commands try ``, or system().use File::Copy; copy("file1","file2");
OR`cp file1 file2`;
-----system(cp file1 file2);
|
|---|