通过脚本编辑 Perforce 标签的描述
我想使用可以自动调用的脚本修改现有的 Perforce 标签。目前我知道如何使用文本编辑器选项来执行此操作:
p4 label <label-name>
这会在我的默认文本编辑器中打开一个临时文件,然后我可以输入描述,保存文件并关闭 - 成功更新标签。
但是,我希望能够使用脚本自动执行此操作。我将拥有可用于形成我的描述的变量。
我可以使用 shell 脚本或 bat 脚本(在 Windows 上,但有 Cygwin)。
有关标签的 Perforce 命令行文档可以在此处找到,但这对我没有帮助。
有什么想法吗?
I want to modify an existing Perforce label using a script that I can invoke automatically. Currently I know how to do it using the text editor option:
p4 label <label-name>
This opens up a temporary file in my default text editor, I can then enter a description, save the file and close - updates the label successfully.
However, I want to be able to do this automatically using a script. I will have variables that can be used to form my description.
I can use either a shell script or a bat script (on Windows but have Cygwin).
Perforce command line documentation on labels can be found here, but it's not helping me.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你会按照这些思路做一些事情:
You would do something along those lines:
sed
可用于(轻松)替换单行上的文本,但perl
的语法在处理多行描述字段时更容易。以下
bash
代码导出标签 NAME_OF_CURRENT_LABEL 的标签定义,创建 MY_NEW_LABEL 的新标签定义,然后将描述设置为 MY_NEW_DESCRIPTION。请注意,它假设描述文本存在,并且位于上面的“Description:”行下方的一行上。要仅更新描述,请删除sed
行。sed
can be used to (easily) replace text on a single line, butperl
's syntax is easier when dealing with the multi-line Description field.The following
bash
code exports the label definition for label NAME_OF_CURRENT_LABEL, creates a new label definition of MY_NEW_LABEL and then sets the description to MY_NEW_DESCRIPTION. Note that that it assumes that the description text exists, and is on a single line, below the "Description:" line above. To just update the description, remove thesed
line.