in reply to How to use lshistory of cleartool in perl?
#!/usr/bin/perl use strict; use warnings; use ClearCase::Proc::ClearTool; my $cleartool = new ClearCase::Proc::ClearTool; my($stat, $err) = $cleartool->start; $stat and die $err; $cleartool->run('lshistory -local'); print $cleartool->dump;
Perhaps this might help get you started?
|
|---|