我有两个 perforce 客户端(client-a,client-b),每个都包含大约 40 个文件规范。它们是相似的,但每个客户端都有几个不包含在另一个客户端中的文件规范。我想找出这些客户端规格之间的差异。理想情况下,输出看起来像这样......
File specs in client-a and not in client-b:
//depot/dirA/...
//depot/dirG/...
File specs in client-b and not in client-a:
//depot/dirD/...
//depot/dirX/...
如果我能做类似的事情就好了p4 diff -c client-a -c client-b
,但是在阅读了 and 的文档之后p4 diff
,p4 diff2
这似乎是不可能的。我可以求助于编写 awk 脚本,但认为可能有更好的解决方案。有没有简单的方法来实现这一点?