Perl でファイルのコピーを行うには、File::Copy モジュールの copy 関数を使用します。
File::Copy
copy
use File::Copy; copy('src.txt', 'dst.txt') or die "Cannot copy files: $!";