用于编辑P4客户端工作空间的脚本

时间:2013-07-01 23:52:31

标签: bash shell perforce workspace

我正在写一些脚本,但我需要先从P4获取源代码。如何在脚本中编辑客户端工作区?

以下是我通常使用bash执行的步骤:

export P4CLIENT=myworkspace
p4 client
//now I manually edit the source and destination directory using Vim
p4 sync

提前致谢!!!

2 个答案:

答案 0 :(得分:8)

p4 client可以使用标准输入和输出。

export P4CLIENT=myworkspace
p4 client -o > /tmp/myclient.$$ # Write client to a temp file
# Commands to update /tmp/myclient with the changes you need
p4 client -i < /tmp/myclient.$$
p4 sync
rm /tmp/myclient.$$

答案 1 :(得分:0)

我只需将98%的用户从“perforce”身份验证更改为“ldap”

我为每个p4用户重复了这个命令:

((p4 user -o %p4user%) | sed "s/perforce/ldap/g") | p4 user -i -f