in reply to Finding Diff files in clear case

just find the output of the DIFFERENCE between the difference two 'baseline' versions of the file and the difference of the latest versions of the file. this can be done through perl language ?

Replies are listed 'Best First'.
Re: Re: Finding Diff files in clear case
by bikeNomad (Priest) on Aug 15, 2001 at 22:43 UTC
    Why not? Perl is capable of doing pretty much anything you can describe clearly how to do.

    Do you have a clear-cut method (regardless of language) for doing this? If you can't describe how to do it (regardless of language), you probably can't do it in Perl or any other language.

    I suggest you take a look at Algorithm::Diff, which implements the Hunt/McIlroy diff algorithm (which is used by the Unix diff tool). It may give you a way to get started.