At 08:52 AM 9/18/2001 -0700, david.hildebrandt at redspark.com wrote:
I'm trying to generate the list of differences between two labels.
in the newest release, "p4 help undoc" can lead you to
some ways to specify ranges that'll help.
I do this:
p4 changes $tree/...$old > $oldfile
p4 changes $tree/...$new > $newfile
diff $oldfile $newfile | grep Change | sed 's/^..//'
where $new and $old both are "@some_label"
I have a "difflabel" script, I think it's in the public depot,
that's handy for this sort of thing. Written in Perl, I believe.
-jab