So File::Copy does not preserve the attributes of the copied file. Can't we fix it?
package NewCopy;
use strict;
use warnings;
use File::Copy;
require Exporter;
our @ISA = qw(File::Copy);
our @EXPORT = qw(copy move);
our @EXPORT_OK = qw(cp mv);
sub cp;
sub mv;
*cp = \©
*mv = \&move;
no warnings;
eval {
sub copy{
my ($attr) = (stat( $_[0] ))[2]
or return -1;
return (File::Copy::copy(@_)
&& (chmod ($attr, $_[1]) );
}
sub move {
return File::Copy::move(@_)
}
};
1;
Replace "use File::Copy" with "use NewCopy" in your script and it will give
/tmp/one is executable
/tmp/two is executable
/tmp/three is executable
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.