/usr/share/librg-utils-perl/copf.pl is in librg-utils-perl 1.0.43-4.
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 | #!/usr/bin/perl -w
no warnings 'deprecated';
#------------------------------------------------------------------------------#
# Copyright 1998 #
# Burkhard Rost rost@EMBL-Heidelberg.DE #
# Wilckensstr. 15 http://www.embl-heidelberg.de/~rost/ #
# D-69120 Heidelberg #
# version 0.1 May, 1998 #
#------------------------------------------------------------------------------#
$[ =1 ; # sets array count to start at 1, not at 0
use RG::Utils::Copf;
#$pack= "pack/copf.pm";
# lkajan: packName does not seem to be used in copf.pm
($Lok,$msg)=
&RG::Utils::Copf::copf( 'dirBin=/usr/bin', 'dirHome=/usr/share/librg-utils-perl', @ARGV);
die( "*** RG::Utils::Copf::copf returned ERROR:\n".$msg." " ) if (! $Lok);
exit(0);
|