/usr/bin/copylink is in libfile-copy-link-perl 0.113-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | #!/usr/bin/perl
eval 'exec /usr/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, E<lt>Robin.Barker@npl.co.ukE<gt>
=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 82 2006-07-26 08:55:37Z rmb1 $
|