3 messages in com.perforce.perforce-user[p4] p4 changes
FromSent OnAttachments
davi...@redspark.com18 Sep 2001 08:51 
Gareth Rees18 Sep 2001 09:07 
Jeff A. Bowles18 Sep 2001 10:57 
Subject:[p4] p4 changes
From:Jeff A. Bowles (ja@piccoloeng.com)
Date:09/18/2001 10:57:03 AM
List:com.perforce.perforce-user

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