I want to get diffs on files in a specific pending changelist. I wish I could do this:
p4 diff -c 999
Can someone help me string together some csh magic to make this happen?
Maybe take the output of p4 opened -c 999 and piping it to p4 diff?
|
The easiest way is in p4v or p4win, but that's not what you were asking about. Try this:
You, of course, need to make sure that the sub shell has p4 in its path, and $P4CLIENT, etc... are all set up. |
|||||||||||
|
|
You can use shell script like this:
call it with changelist number and you'll get patch in stdout. |
|||
|
|
|
I used a similar approach as Mark, but I used Perl instead of Awk, and a shell function (in zsh):
Note that you can provide a file path too, in addition to just the changelist name/number:
|
|||
|
|
Solution
Explanation
So you can almost just "take the output of p4 opened -c 999 and pipe it to p4 diff" as suggested in the question. The one tricky part is that the output of
But we can run this through a simple
which can then be consumed from standard input and fed to If you have |
|||
|
|
|
The above answers your question but, if tile is read as diffing a directory on a change list it can be answered with the following:
This will diff all the files in the directory against the changelist 999 it uses the "have" version if it has be checked out otherwise it uses the latest version. this was tested with GNU Awk 3.1.3 |
|||
|
|
p4 describe -S -du 999– Alexander Bird Nov 7 '12 at 23:58