P4,如何从给定的变更列表中查找变更列表用户?
有人知道如何从给定的变更列表中获取变更列表用户(比如#12345)?
p4 描述 -s #12345
将给出如下输出:
Change #12345 by user@user_clientspec on 2010/07/26 10:26:29
受影响的文件...
.......
是否有任何命令只给出用户名。不适用于客户端规范,因为它显示 user@user_clientspec。
感谢您的帮助。
谢谢, 汤姆
Anybody knows how to get the change list user from a given changelist(say, #12345)?
p4 describe -s #12345
will give output like this:
Change #12345 by user@user_clientspec on 2010/07/26 10:26:29
affected files...
.......
Is there any command to give only the user name. Not with client spec as it shows user@user_clientspec.
Appreciate your help.
Thanks,
Tom
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
或者,如果您使用的是“p4”命令行的最新版本:
Or, if you're on a fairly recent version of the 'p4' command line:
我认为你只需要解析输出。
这个笨拙的 powershell 会让你获得用户:
I think you'll just have to parse the output.
This ungainly bit of powershell will get you the user:
仅获取用户,而不获取其他“User:”字符串、尾随空格等。请尝试:
to get only the user, and not other "User:" strings, trailing spaces, etc. try: