| Server IP : 216.92.14.13 / Your IP : 216.73.216.171 Web Server : Apache System : Linux vps4089.pairvps.com 5.15.0-190-generic #200-Ubuntu SMP Fri Aug 7 15:06:04 UTC 2026 x86_64 User : rmlac2fmr ( 1040637) PHP Version : 8.2.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/local/bin/ |
Upload File : |
#!/usr/local/bin/perl
eval 'exec /usr/local/bin/perl -S $0 ${1+"$@"}'
if 0; # not running under some shell
use strict;
use warnings;
use File::Copy::Link qw(copylink);
warn "$0: no links\n" unless @ARGV;
copylink for @ARGV;
__END__
=head1 NAME
copylink - replace a link with a copy of the linked file
=head1 SYNOPSIS
copylink [link ...]
=head1 DESCRIPTION
Each of the links on the command line is replaced by a copy of the file
that the link points too, so the copy can be edited without changing
the original.
The command is intended for modifying perl source files created by
C<./Configure -Dmksymlinks>.
=head1 SEE ALSO
File::Copy::Link(3)
=head1 AUTHOR
Robin Barker, <RMBarker@cpan.org>
=head1 COPYRIGHT AND LICENSE
Copyright 2003 by Robin Barker
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
=cut
$Id: copylink 278 2011-09-24 00:27:05Z robin $