I am working on a perforce-perl script that creates labels. Due to repeated execution of the script i have created hundreds of labels of the type LABEL_A.180 etc.
I want to know if there is any command or any other way by which I can delete multiple labels at a time?
I am working on a perforce-perl script that creates labels. Due to repeated execution
Share
There is no command or feature in P4V to delete multiple labels. The best approach will be just write another script that finds the labels and then removes them one-by-one.
I do not know the P4Perl API so I’m unable to give you an example, however it will be very similar to existing label creation just with an additional
-dflag passed to thep4 labelcommand.HTH,