- or download this
C:\>copy /?
Copies one or more files to another location.
...
for source (using wildcards or file1+file2+file3 format).
C:\>
- or download this
copy blabla.jpg c:\games
copy .\*.jpg c:\all_jpegs
- or download this
#!/usr/bin/perl
`copy blabla.jpg c:\\games`;
- or download this
#!/usr/bin/perl
use File::Copy;
copy( 'file1', 'file2' );