gpt4 book ai didi

perforce - 在 Perforce 中,递归列出给定父流的所有子流

转载 作者:行者123 更新时间:2023-12-03 17:40:08 25 4
gpt4 key购买 nike

给定一个父流,我可以使用以下命令找到它的直接子流:

p4 streams -F "Parent=<parent_stream_path>"  

但是,有没有办法递归列出给定父流的所有后代流?

最佳答案

我编写了一个小的 perl 函数来获取子列表。
像这样的东西:

sub getChildrenList {
my $child = shift;
$child =~ s/^\s+|\s+$//g;
my $get_children_cmd="p4 streams -F \"Parent=<parent_stream_path>\"";
my @children= `$get_children_cmd`;
if (@children != 0){
foreach my $child_name (@children){
getChildrenList($child_name);
}
}
push(@children_list,$child);
}

关于perforce - 在 Perforce 中,递归列出给定父流的所有子流,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38212218/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com