如何对p4标签使用-e / -E选项

时间:2014-09-03 01:29:08

标签: perforce

我尝试使用“p4标签”来检索名称格式为“FOO_2.4.4”的标签。我尝试了以下列表,但没有一个有效。另一方面,“p4标签.... | grep FOO”确实让我得到了标签。我错过了什么吗?

  • p4标签-e FOO
  • p4标签-e FOO ....
  • p4 labels -e FOO // comms / path_to_directory_containing_files_in_label /...
  • p4标签-e“FOO”
  • p4标签-e“FOO”....
  • p4 labels -e“FOO”// comms / path_to_directory_containing_files_in_label /...
  • p4标签-E FOO
  • p4标签-E FOO ....
  • p4 labels -E FOO // comms / path_to_directory_containing_files_in_label /...
  • p4标签-E“FOO”
  • p4标签-E“FOO”....
  • p4标签-E“FOO”// comms / path_to_directory_containing_files_in_label /...
  • p4标签-e FOO *
  • p4标签-e FOO * ....
  • p4标签-e FOO * // comms / path_to_directory_containing_files_in_label /...
  • p4标签-e“FOO *”
  • p4标签-e“FOO *”....
  • p4 labels -e“FOO *”// comms / path_to_directory_containing_files_in_label /...
  • p4标签-E FOO *
  • p4标签-E FOO * ....
  • p4标签-E FOO * // comms / path_to_directory_containing_files_in_label /...
  • p4标签-E“FOO *”
  • p4标签-E“FOO *”....
  • p4标签-E“FOO *”// comms / path_to_directory_containing_files_in_label /...

1 个答案:

答案 0 :(得分:0)

我不确定出了什么问题。这可能是引用的问题。在我的Windows命令行shell中,我必须使用双引号,而不是单引号:

C:\Users\Bryan>p4 tag -l FOO_2.4.4 //...
//depot/a#1 - added

C:\Users\Bryan>p4 labels -e 'FOO*'

C:\Users\Bryan>p4 labels -e "FOO*"
Label FOO_2.4.4 2014/09/03 'Created by Bryan.'

但似乎您尝试了几种引号组合但没有成功。

你还试过-E吗?这使得匹配不区分大小写。