/usr/share/doc/librcs-perl/examples/symbols.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 15 16 17 18 19 20 21 22 23 | #!/usr/local/bin/perl -w
#------------------------------------------
# Test symrev method
#------------------------------------------
use strict;
use Rcs;
Rcs->bindir('/usr/bin');
my $obj = Rcs->new;
$obj->rcsdir("./project/RCS");
$obj->workdir("./project/src");
$obj->file("testfile");
my %symbols = $obj->symbols;
my $sym;
foreach $sym (keys %symbols) {
my $rev = $symbols{$sym};
print "Symbol : Revision = $sym : $rev\n";
}
my @syms = keys %symbols;
print "@syms\n";
|