in reply to How to get the vob space by using perl
If so, I assume (but I don't know clearcase) that there are command line tools for getting information about these VOBs.
If that's true, your best / easiest strategy would be to run those tools from perl and extract the pertinent data from their output.
For instance, you can get the output of a program as a string by running it using `` quotes:
you can then do with $output what you will.my $output = `/some/tool -and -some options`;
See also perlintro.
|
|---|