/usr/share/doc/librcs-perl/examples/test1.pl is in librcs-perl 1.05-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 | #!/usr/local/bin/perl -w
use strict;
use lib '.';
use Rcs;
my $p = new Rcs();
$p->workdir("foo");
my $n = new Rcs();
$n->workdir("bar");
print $p->workdir, "\n";
print $n->workdir, "\n";
|