blob: 957cfc7365b2dee09c2708393abb7a0ce0fd9dce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/usr/local/bin/perl -w
#------------------------------------------
# rcsclean utility
#------------------------------------------
use strict;
use Rcs;
Rcs->quiet(0); # turn off quiet mode
Rcs->bindir('/usr/bin');
my $obj = Rcs->new;
print "Quiet mode NOT set\n" unless Rcs->quiet;
$obj->rcsdir("./project/RCS");
$obj->workdir("./project/src");
$obj->file("testfile");
$obj->rcsclean;
|